12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
export interface IPresetGeometryAttributes {
|
|
prst?: string;
|
|
}
|
|
|
|
export class PresetGeometryAttributes extends XmlAttributeComponent<IPresetGeometryAttributes> {
|
|
protected xmlKeys = {
|
|
prst: "prst",
|
|
};
|
|
}
|