UNPKG

@asposecloud/aspose-tasks-cloud

Version:
16 lines (15 loc) 420 B
/** * Serialisation helper. */ export declare class ObjectSerializer { /** * Serilize object to json string. */ static serialize(data: any, type: string, isRecursiveCall?: boolean): any; /** * Deserialize object from json string */ static deserialize(data: any, type: string): any; private static GetPropertyCaseInsensitive; private static findCorrectType; }