Clémentine
init
7c5b7bd
raw
history blame
No virus
299 Bytes
import { Path } from '../json-pointer';
import type { MsgPackDecoder } from './MsgPackDecoder';
type Decoder = Pick<MsgPackDecoder, 'readObjHdr' | 'readStrHdr' | 'readArrHdr' | 'skipAny'>;
type Fn = (decoder: Decoder) => number;
export declare const genShallowReader: (path: Path) => Fn;
export {};