UNPKG

@dipscope/type-manager

Version:

Transform JSON strings or plain objects into JS class instances.

9 lines 358 B
import { TypeName } from './type-name'; /** * Discriminant intends to describe a unique key for a polymorphic type which will be * used during serialization and deserialization. Can be a type name, any string or number. * * @type {Discriminant} */ export declare type Discriminant = TypeName | string | number; //# sourceMappingURL=discriminant.d.ts.map