UNPKG

@jsonjoy.com/json-pack

Version:

High-performance JSON serialization library

7 lines (6 loc) 318 B
import { IonDecoderBase } from './IonDecoderBase'; import type { IReader, IReaderResettable } from '@jsonjoy.com/buffers/lib'; export declare class IonDecoder<R extends IReader & IReaderResettable = IReader & IReaderResettable> extends IonDecoderBase<R> { decode(data: Uint8Array): unknown; read(): unknown; }