zipster
Version:
TypeScript library built for Node backends to create ZIP files with password protection
15 lines • 339 B
TypeScript
import { ArchiverOptions } from 'archiver';
import { Formats } from '../enums/Formats';
/**
* Options for the archiver
*/
interface Options extends ArchiverOptions {
format: Formats;
password?: string;
output?: {
name?: string;
path?: string;
};
}
export { Options };
//# sourceMappingURL=Options.d.ts.map