Files
study-bible-project/node_modules/docx/dist/file/track-revision/track-revision-components/deleted-text-run.d.ts
T

13 lines
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 {};