15 lines
356 B
TypeScript
15 lines
356 B
TypeScript
// http://officeopenxml.com/WPparagraph.php
|
|
import { Attributes, XmlComponent } from "@file/xml-components";
|
|
|
|
export class OutlineLevel extends XmlComponent {
|
|
constructor(public readonly level: number) {
|
|
super("w:outlineLvl");
|
|
|
|
this.root.push(
|
|
new Attributes({
|
|
val: level,
|
|
}),
|
|
);
|
|
}
|
|
}
|