UNPKG

@dipscope/type-manager

Version:

Transform JSON strings or plain objects into JS class instances.

8 lines 278 B
/** * Type to describe type including null and undefined variations of it. Used as a * generic type for serializer input and output. * * @type {TypeLike<TObject>} */ export declare type TypeLike<TObject> = TObject | null | undefined; //# sourceMappingURL=type-like.d.ts.map