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

12 lines
257 B
TypeScript
Raw Normal View History

2018-01-16 00:43:00 +00:00
import { XmlAttributeComponent } from "file/xml-components";
export interface IPicAttributes {
xmlns?: string;
}
export class PicAttributes extends XmlAttributeComponent<IPicAttributes> {
protected xmlKeys = {
xmlns: "xmlns:pic",
};
}