Files
docx-js/src/file/styles/defaults/paragraph-properties.ts
Dolan Miu 982d923553 Improve import alias
@file/ and @export/ instead of file/ and export/ etc
2022-06-26 23:26:42 +01:00

10 lines
377 B
TypeScript

import { IParagraphStylePropertiesOptions, ParagraphProperties } from "@file/paragraph/properties";
import { XmlComponent } from "@file/xml-components";
export class ParagraphPropertiesDefaults extends XmlComponent {
constructor(options?: IParagraphStylePropertiesOptions) {
super("w:pPrDefault");
this.root.push(new ParagraphProperties(options));
}
}