@jsonjoy.com/json-type
Version:
High-performance JSON Pointer implementation
7 lines (6 loc) • 408 B
TypeScript
import type { CborEncoder } from '@jsonjoy.com/json-pack/lib/cbor/CborEncoder';
import { BinaryEncoderCodegenContext, type BinaryEncoderCodegenContextOptions } from './BinaryEncoderCodegenContext';
export interface CborEncoderCodegenContextOptions extends BinaryEncoderCodegenContextOptions<CborEncoder> {
}
export declare class CborEncoderCodegenContext extends BinaryEncoderCodegenContext<CborEncoder> {
}