UNPKG

@betit/orion

Version:

Pluggable microservice framework

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