UNPKG

@betit/orion

Version:

Pluggable microservice framework

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