docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
10 lines (9 loc) • 366 B
TypeScript
import { XmlComponent } from '../../xml-components';
import { IRunOptions } from "../../index";
import { IChangedAttributesProperties } from "../track-revision";
interface IInsertedRunOptions extends IChangedAttributesProperties, IRunOptions {
}
export declare class InsertedTextRun extends XmlComponent {
constructor(options: IInsertedRunOptions);
}
export {};