10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
export class PicAttributes extends XmlAttributeComponent<{
|
|
readonly xmlns?: string;
|
|
}> {
|
|
protected readonly xmlKeys = {
|
|
xmlns: "xmlns:pic",
|
|
};
|
|
}
|