fix inheritance of BufferPacker class

This commit is contained in:
巴里切罗
2018-07-26 17:16:18 +08:00
parent e02e54db2c
commit 6bdcee1d1b

View File

@ -1,8 +1,9 @@
import { File } from "../../file"; import { File } from "../../file";
import { BufferStream } from "./buffer-stream"; import { BufferStream } from "./buffer-stream";
import { Compiler } from "./compiler"; import { Compiler } from "./compiler";
import { IPacker } from "./packer";
export class BufferPacker { export class BufferPacker implements IPacker {
private readonly packer: Compiler; private readonly packer: Compiler;
constructor(file: File) { constructor(file: File) {