/** * Allows to use different zip libraries */ export interface ZipWriterAdapter { addFile(name: string): Promise>; addDirectory(name: string): Promise; /** * Called when all files have added (streams still in progress) */ ready?(): Promise; close(): Promise; abort(): Promise; } //# sourceMappingURL=interfaces.d.ts.map