UNPKG

node-pkware

Version:

nodejs implementation of StormLib's pkware compressor/de-compressor

14 lines (13 loc) 284 B
/** * Configuration options for the implode & explode functions. */ export type Config = { /** * Whether the code should display extra messages on the console or not * @default false */ verbose?: boolean; }; export type Stats = { chunkCounter: number; };