You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
416 B

import { Writer } from '@jsonjoy.com/buffers/lib/Writer';
import { CborJsonValueCodec } from './cbor';
import { JsonJsonValueCodec } from './json';
import { MsgPackJsonValueCodec } from './msgpack';
export declare class Codecs {
readonly writer: Writer;
readonly cbor: CborJsonValueCodec;
readonly msgpack: MsgPackJsonValueCodec;
readonly json: JsonJsonValueCodec;
constructor(writer: Writer);
}