Creates a strict nominal type.
type Foo = NominalStrict<'Foo', number>;const foo: Foo = 1;// => Error: Type 'number' is not assignable to type 'Foo'. Copy
type Foo = NominalStrict<'Foo', number>;const foo: Foo = 1;// => Error: Type 'number' is not assignable to type 'Foo'.
Generated using TypeDoc
Creates a strict nominal type.