Write tests

This commit is contained in:
Dolan
2021-03-13 22:10:00 +00:00
parent 4bc0421055
commit 0bc36d924f
9 changed files with 91 additions and 32 deletions

View File

@ -1,12 +1 @@
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);
}
}
export * from "./latent-styles";