Files
docx-js/src/file/paragraph/formatting/style.ts
2019-12-18 21:11:15 +00:00

23 lines
506 B
TypeScript

import { Attributes, XmlComponent } from "file/xml-components";
export enum HeadingLevel {
HEADING_1 = "Heading1",
HEADING_2 = "Heading2",
HEADING_3 = "Heading3",
HEADING_4 = "Heading4",
HEADING_5 = "Heading5",
HEADING_6 = "Heading6",
TITLE = "Title",
}
export class Style extends XmlComponent {
constructor(styleId: string) {
super("w:pStyle");
this.root.push(
new Attributes({
val: styleId,
}),
);
}
}