Spaces:
Running
Running
File size: 421 Bytes
7c5b7bd |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { Writer } from '@jsonjoy.com/util/lib/buffers/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);
}
|