UNPKG

idx-data

Version:

An idx binary data format loader.

8 lines (7 loc) 310 B
/** * Creates folders for the entire given path if necessary. * Same behaviour as mkdir -p */ export declare const createFolder: (location: string) => Promise<void>; export declare function assertNever(t: never, msg?: string): Error; export declare type BufferType = Uint8Array | Float32Array | Int32Array;