12 lines
292 B
TypeScript
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",
|
||
|
};
|
||
|
}
|