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