Merge pull request #105 from ydfzgyj/buffer

fix inheritance of BufferPacker class
This commit is contained in:
Dolan
2018-07-26 13:03:06 +01:00
committed by GitHub

View File

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