UNPKG

@bare-ts/lib

Version:

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

7 lines (6 loc) 251 B
export type Config = { readonly initialBufferLength: number; readonly maxBufferLength: number; }; export declare function Config({ initialBufferLength, maxBufferLength, }: Partial<Config>): Config; export declare const DEFAULT_CONFIG: Config;