asposeslidescloud
Version:
Aspose.Slides Cloud SDK for Node.js
19 lines (18 loc) • 416 B
TypeScript
/**
* Serialisation helper.
*/
export declare class ObjectSerializer {
/**
* Serilize object to json string.
*/
static serialize(data: any, type: string): any;
/**
* Deserialize object from json string
*/
static deserialize(data: any, type: string): any;
/**
* cast object to string
*/
static toString(data: any): string;
private static findCorrectType;
}