10 lines
377 B
TypeScript
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));
|
|
}
|
|
}
|