docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
14 lines (13 loc) • 532 B
TypeScript
import { XmlComponent } from '../../xml-components';
import { IRunOptions } from "../../index";
import { IChangedAttributesProperties } from "../track-revision";
interface IDeletedRunOptions extends IRunOptions, IChangedAttributesProperties {
}
export declare class DeletedTextRun extends XmlComponent {
protected readonly deletedTextRunWrapper: DeletedTextRunWrapper;
constructor(options: IDeletedRunOptions);
}
declare class DeletedTextRunWrapper extends XmlComponent {
constructor(options: IRunOptions);
}
export {};