12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
![]() |
import { IDocumentTemplate } from "importDocx";
|
||
|
|
||
|
export interface IFileProperties {
|
||
|
template?: IDocumentTemplate;
|
||
|
}
|
||
|
|
||
|
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
|
||
|
/**
|
||
|
* @ignore
|
||
|
*/
|
||
|
export const WORKAROUND = "";
|