UNPKG

groupdocs-parser-cloud

Version:
15 lines (14 loc) 313 B
/** * Serializer */ export declare class Serializer { /** * Serialize object to json string. */ static serialize(data: any, type: string): any; /** * Construct object from json string */ static deserialize(data: any, type: string): any; private static findCorrectType; }