@asposecloud/aspose-tasks-cloud
Version:
Aspose.Tasks Cloud SDK for Node.js
16 lines (15 loc) • 420 B
TypeScript
/**
* 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;
}