added styles
This commit is contained in:
15
ts/styles/latent-styles/exceptions/index.ts
Normal file
15
ts/styles/latent-styles/exceptions/index.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import {XmlComponent} from "../../../docx/xml-components";
|
||||
import {LatentStyleExceptionAttributes} from "./attributes";
|
||||
|
||||
export class LatentStyleException implements XmlComponent {
|
||||
private lsdException: Array<XmlComponent>;
|
||||
|
||||
xmlKeys = {
|
||||
lsdException: "w:lsdException"
|
||||
}
|
||||
|
||||
constructor(attributes: LatentStyleExceptionAttributes) {
|
||||
this.lsdException = new Array<XmlComponent>();
|
||||
this.lsdException.push(attributes);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user