Files
docx-js/src/file/drawing/graphic/graphic-data/pic/shape-properties/shape-properties-attributes.ts
Igor Bulovski ac40a40ec0 refactor: move components from /drawing/inline to /drawing
- they will be used for other positioning element (floating)
2018-06-08 07:50:23 +02:00

12 lines
292 B
TypeScript

import { XmlAttributeComponent } from "file/xml-components";
export interface IShapePropertiesAttributes {
bwMode?: string;
}
export class ShapePropertiesAttributes extends XmlAttributeComponent<IShapePropertiesAttributes> {
protected xmlKeys = {
bwMode: "bwMode",
};
}