UNPKG

@betit/orion-node-sdk

Version:
16 lines (15 loc) 291 B
/** * JavaScript Object Notation, a lightweight data-interchange format. */ export declare class JsonCodec { encoding: string; contentType: string; /** * Encode data. */ encode(data: any): string; /** * Decode data. */ decode(data: any): any; }