10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { XmlAttributeComponent } from "@file/xml-components";
|
|
|
|
export class GraphicDataAttributes extends XmlAttributeComponent<{
|
|
readonly uri?: string;
|
|
}> {
|
|
protected readonly xmlKeys = {
|
|
uri: "uri",
|
|
};
|
|
}
|