UNPKG

@fahnestockj/numcodecs-fork

Version:

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

7 lines (6 loc) 165 B
import type { CodecConstructor } from './types'; interface GZipConfig { level?: number; } declare const GZip: CodecConstructor<GZipConfig>; export default GZip;