Files
docx-js/build/file/drawing/inline/doc-properties/doc-properties-attributes.d.ts
2018-04-02 14:37:54 +03:00

14 lines
390 B
TypeScript

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