11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import { XmlComponent } from "../../../docx/xml-components";
|
|
import { LatentStyleExceptionAttributes } from "./attributes";
|
|
|
|
export class LatentStyleException extends XmlComponent {
|
|
|
|
constructor(attributes: LatentStyleExceptionAttributes) {
|
|
super("w:lsdException");
|
|
this.root.push(attributes);
|
|
}
|
|
}
|