UNPKG

@dipscope/type-manager

Version:

Transform JSON strings or plain objects into JS class instances.

10 lines 392 B
import { Alias } from './alias'; import { TypeFn } from './type-fn'; import { TypeResolver } from './type-resolver'; /** * Type argument represents the data which can be passed to define a certain type. * * @type {TypeArgument<TObject>} */ export declare type TypeArgument<TObject> = TypeFn<TObject> | TypeResolver<TObject> | Alias | undefined; //# sourceMappingURL=type-argument.d.ts.map