UNPKG

@fahnestockj/numcodecs-fork

Version:

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

7 lines (6 loc) 168 B
import type { CodecConstructor } from './types'; interface LZ4Config { acceleration?: number; } declare const LZ4: CodecConstructor<LZ4Config>; export default LZ4;