asposecellscloud
Version:
Aspose.Cells Cloud for Node.js to create, repair, merge, parse and convert excel files. Convert excel to PDF, JSON, XML, TSV, HTML and so on.
15 lines (14 loc) • 331 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;
private static findCorrectType;
}