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

4 lines
109 B
TypeScript
Raw Normal View History

export interface IXmlableObject extends Object {
2018-01-23 01:33:12 +00:00
_attr?: { [key: string]: string | number | boolean };
}