@dipscope/type-manager
Version:
Transform JSON strings or plain objects into JS class instances.
10 lines • 356 B
TypeScript
/**
* In type script there is no explicit class for any type but sometimes such serialization is required.
* This simple class will allow direct serialization and deserialization. No transformations will be applied
* for properties which specify it as a type argument.
*
* @type {Any}
*/
export declare class Any {
}
//# sourceMappingURL=any.d.ts.map