Files
docx-js/build/file/drawing/inline/graphic/graphic-data/pic/pic-attributes.d.ts

10 lines
284 B
TypeScript
Raw Normal View History

2018-04-02 14:37:54 +03:00
import { XmlAttributeComponent } from "../../../../../../file/xml-components";
export interface IPicAttributes {
xmlns?: string;
}
export declare class PicAttributes extends XmlAttributeComponent<IPicAttributes> {
protected xmlKeys: {
xmlns: string;
};
}