13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
import {XmlComponent} from "../../docx/xml-components";
|
|
import {LatentStyleException} from "./exceptions";
|
|
|
|
export class LatentStyles extends XmlComponent {
|
|
|
|
constructor() {
|
|
super("w:latentStyles");
|
|
}
|
|
|
|
push(latentException: LatentStyleException): void {
|
|
this.root.push(latentException);
|
|
}
|
|
} |