@dipscope/type-manager
Version:
Transform JSON strings or plain objects into JS class instances.
10 lines • 316 B
TypeScript
/**
* In type script there is no explicit class for unknown type. We want to allow serialization and
* deserialization without specify any serializers. However such behaviour should be visible in the
* type metadata.
*
* @type {Unknown}
*/
export declare class Unknown {
}
//# sourceMappingURL=unknown.d.ts.map