UNPKG

@dipscope/type-manager

Version:

Transform JSON strings or plain objects into JS class instances.

9 lines 271 B
import { TypeAbstraction } from './type-abstraction'; import { TypeCtor } from './type-ctor'; /** * Type function. * * @type {TypeFn<TObject>} */ export declare type TypeFn<TObject> = TypeCtor<TObject> | TypeAbstraction<TObject>; //# sourceMappingURL=type-fn.d.ts.map