import { SideBarView } from '../SideBarView.js'; import { IPageDecorator } from '../../utils.js'; import { DebugView as DebugViewLocators } from '../../../locators/1.73.0.js'; export interface DebugView extends IPageDecorator { } /** * Page object representing the Run/Debug view in the side bar * * @category Sidebar */ export declare class DebugView extends SideBarView { /** * @private */ locatorKey: "DebugView"; /** * Get the title of the selected launch configuration * @returns Promise resolving to the title */ getLaunchConfiguration(): Promise; /** * Get titles of all available launch configurations * @returns Promise resolving to list of titles */ getLaunchConfigurations(): Promise; /** * Select a given launch configuration * @param title title of the configuration to select */ selectLaunchConfiguration(title: string): Promise; /** * Start Debugging using the current launch configuration */ start(): Promise; } //# sourceMappingURL=DebugView.d.ts.map