30 lines
751 B
TypeScript
30 lines
751 B
TypeScript
![]() |
import {XmlComponent} from "../../../docx/xml-components";
|
||
|
|
||
|
interface LatentStyleExceptionAttributesProperties {
|
||
|
name?: string;
|
||
|
uiPriority?: string,
|
||
|
qFormat?: string,
|
||
|
semiHidden?: string,
|
||
|
unhideWhenUsed?: string
|
||
|
}
|
||
|
|
||
|
export class LatentStyleExceptionAttributes implements XmlComponent {
|
||
|
private _attr: Object;
|
||
|
|
||
|
xmlKeys = {
|
||
|
name: "w:name",
|
||
|
uiPriority: "w:uiPriority",
|
||
|
qFormat: "w:qFormat",
|
||
|
semiHidden: "w:semiHidden",
|
||
|
unhideWhenUsed: "w:unhideWhenUsed"
|
||
|
};
|
||
|
|
||
|
constructor(properties?: LatentStyleExceptionAttributesProperties) {
|
||
|
this._attr = properties
|
||
|
|
||
|
if (!properties) {
|
||
|
this._attr = {};
|
||
|
}
|
||
|
this._attr["xmlKeys"] = this.xmlKeys;
|
||
|
}
|
||
|
}
|