Files
docx-js/src/file/drawing/inline/doc-properties/doc-properties-attributes.ts
2018-01-16 01:31:47 +00:00

16 lines
359 B
TypeScript

import { XmlAttributeComponent } from "file/xml-components";
export interface IDocPropertiesAttributes {
id?: number;
name?: string;
descr?: string;
}
export class DocPropertiesAttributes extends XmlAttributeComponent<IDocPropertiesAttributes> {
protected xmlKeys = {
id: "id",
name: "name",
descr: "descr",
};
}