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 ZstdConfig { level?: number; } declare const Zstd: CodecConstructor<ZstdConfig>; export default Zstd;