UNPKG

@bare-ts/lib

Version:

TypeScript library for BARE, a compact and simple binary-serialization format

9 lines (8 loc) 282 B
export type Config = { readonly initialBufferLength: number; readonly maxBufferLength: number; }; export declare function Config({ initialBufferLength, maxBufferLength, }: { initialBufferLength?: number | undefined; maxBufferLength?: number | undefined; }): Config;