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