vscode-vsce/typings/yazl.d.ts

10 lines
209 B
TypeScript
Raw Normal View History

2015-09-17 21:53:03 +02:00
declare module 'yazl' {
import * as stream from 'stream';
class ZipFile {
outputStream: stream.Stream;
addBuffer(buffer: Buffer, path: string);
addFile(localPath: string, path: string);
end();
}
}