UNPKG

@fahnestockj/numcodecs-fork

Version:

Buffer compression and transformation codecs for use in data storage and communication applications.

16 lines (15 loc) 349 B
import type { CodecConstructor } from './types'; declare enum BloscShuffle { NOSHUFFLE = 0, SHUFFLE = 1, BITSHUFFLE = 2, AUTOSHUFFLE = -1 } interface BloscConfig { blocksize?: number; clevel?: number; cname?: string; shuffle?: BloscShuffle; } declare const Blosc: CodecConstructor<BloscConfig>; export default Blosc;