11 lines
350 B
TypeScript
11 lines
350 B
TypeScript
import { IRunStylePropertiesOptions, RunProperties } from "file/paragraph/run/properties";
|
|
import { XmlComponent } from "file/xml-components";
|
|
|
|
export class RunPropertiesDefaults extends XmlComponent {
|
|
constructor(options?: IRunStylePropertiesOptions) {
|
|
super("w:rPrDefault");
|
|
|
|
this.root.push(new RunProperties(options));
|
|
}
|
|
}
|