@graffy/common
Version:
Common libraries that used by various Graffy modules.
12 lines (11 loc) • 290 B
TypeScript
export function encode(value: any): Uint8Array<any>;
export function decode(buffer: any): any;
export const END: 0;
export const NULL: 1;
export const FALSE: 2;
export const TRUE: 3;
export const NUM: 4;
export const STR: 5;
export const ARR: 6;
export const OBJ: 7;
export const EOK: 127;