added default style

This commit is contained in:
Dolan Miu
2016-04-05 06:03:04 +01:00
parent d4c2b10285
commit a4b6ea562f
4 changed files with 162 additions and 8 deletions

View File

@ -7,7 +7,7 @@ export class LocalPacker extends Packer {
private stream: fs.WriteStream
constructor(document: Document, style: any, properties: Properties, path: string) {
super(document, null, properties);
super(document, style, properties);
this.stream = fs.createWriteStream(path);
}