Files
docx-js/src/file/xml-components/xmlable-object.ts

13 lines
299 B
TypeScript
Raw Normal View History

2018-10-17 09:15:32 +03:00
export interface IXmlAttribute {
[key: string]: string | number | boolean;
}
export interface IXmlableObject extends Object {
2018-10-17 09:15:32 +03:00
_attr?: IXmlAttribute;
}
2018-02-02 01:56:08 +00:00
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
/**
* @ignore
*/
export const WORKAROUND3 = "";