modified git ignore

This commit is contained in:
ilmar
2018-04-02 14:37:54 +03:00
parent ee721ffbec
commit 80f09ac10b
149 changed files with 83578 additions and 1 deletions

10
build/export/packer/express.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
/// <reference types="express" />
import * as express from "express";
import { File } from "../../file";
import { IPacker } from "./packer";
export declare class ExpressPacker implements IPacker {
private readonly res;
private readonly packer;
constructor(file: File, res: express.Response);
pack(name: string): Promise<void>;
}