Add workaround for files which only have an interface

This commit is contained in:
Dolan
2018-01-31 20:08:36 +00:00
parent 8a6b73915f
commit 320cb1c418
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,6 @@
export interface IPacker {
pack(path: string): void;
}
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
export const WORKAROUND = "";

View File

@ -18,3 +18,6 @@ export interface IMediaData {
fileName: string;
dimensions: IMediaDataDimensions;
}
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
export const WORKAROUND = "";