10 lines
325 B
TypeScript
10 lines
325 B
TypeScript
![]() |
import { XmlAttributeComponent } from "../../../../../../../file/xml-components";
|
||
|
export interface IShapePropertiesAttributes {
|
||
|
bwMode?: string;
|
||
|
}
|
||
|
export declare class ShapePropertiesAttributes extends XmlAttributeComponent<IShapePropertiesAttributes> {
|
||
|
protected xmlKeys: {
|
||
|
bwMode: string;
|
||
|
};
|
||
|
}
|