Change docx folder to more appropriate "file" folder
This commit is contained in:
13
src/file/styles/latent-styles/index.ts
Normal file
13
src/file/styles/latent-styles/index.ts
Normal file
@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user