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