docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
13 lines (10 loc) • 339 B
text/typescript
import { XmlComponent } from "file/xml-components";
import { LatentStyleException } from "./exceptions";
export class LatentStyles extends XmlComponent {
constructor() {
super("w:latentStyles");
}
public push(latentException: LatentStyleException): void {
this.root.push(latentException);
}
}