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

12 lines
292 B
TypeScript
Raw Normal View History

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