import { Editor, EditorLocators } from './Editor.js'; import { TextEditor } from './TextEditor.js'; import { IPageDecorator } from '../utils.js'; export interface DiffEditor extends IPageDecorator { } /** * Page object representing a diff editor * * @category Editor */ export declare class DiffEditor extends Editor { /** * @private */ locatorKey: "DiffEditor"; /** * Gets the text editor corresponding to the originalside. * (The left side of the diff editor) * @returns Promise resolving to TextEditor object */ getOriginalEditor(): Promise; /** * Gets the text editor corresponding to the modified side. * (The right side of the diff editor) * @returns Promise resolving to TextEditor object */ getModifiedEditor(): Promise; } //# sourceMappingURL=DiffEditor.d.ts.map