UNPKG

@betit/orion-node-sdk

Version:
16 lines (15 loc) 276 B
/** * MessagePack, an efficient binary serialization format. */ export declare class MsgPackCodec { encoding: any; contentType: string; /** * Encode data. */ encode(data: any): any; /** * Decode data. */ decode(data: any): any; }