14 lines
349 B
TypeScript
14 lines
349 B
TypeScript
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
export interface IAppPropertiesAttributes {
|
|
readonly xmlns: string;
|
|
readonly vt: string;
|
|
}
|
|
|
|
export class AppPropertiesAttributes extends XmlAttributeComponent<IAppPropertiesAttributes> {
|
|
protected readonly xmlKeys = {
|
|
xmlns: "xmlns",
|
|
vt: "xmlns:vt",
|
|
};
|
|
}
|