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