10 lines
317 B
TypeScript
10 lines
317 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);
|
|
}
|
|
} |