10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
|
declare module 'yazl' {
|
||
|
import * as stream from 'stream';
|
||
|
|
||
|
class ZipFile {
|
||
|
outputStream: stream.Stream;
|
||
|
addBuffer(buffer: Buffer, path: string);
|
||
|
addFile(localPath: string, path: string);
|
||
|
end();
|
||
|
}
|
||
|
}
|