7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
export interface IPacker {
|
|
pack(path: string): void;
|
|
}
|
|
|
|
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
|
|
export const WORKAROUND = "";
|