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

12 lines
283 B
TypeScript
Raw Normal View History

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