Files
docx-js/src/file/styles/defaults/run-properties.ts
2021-03-09 01:37:22 +00:00

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));
}
}