import { Command } from '@theia/core/lib/common'; export declare namespace DebugMenus { const DEBUG: string[]; const DEBUG_CONTROLS: string[]; const DEBUG_CONFIGURATION: string[]; const DEBUG_THREADS: string[]; const DEBUG_SESSIONS: string[]; const DEBUG_BREAKPOINT: string[]; const DEBUG_NEW_BREAKPOINT: string[]; const DEBUG_BREAKPOINTS: string[]; } export declare function nlsEnableBreakpoint(breakpoint: string): string; export declare function nlsDisableBreakpoint(breakpoint: string): string; export declare namespace DebugCommands { const DEBUG_CATEGORY = "Debug"; const DEBUG_CATEGORY_KEY: string; const START: Command; const START_NO_DEBUG: Command; const STOP: Command; const RESTART: Command; const OPEN_CONFIGURATIONS: Command; const ADD_CONFIGURATION: Command; const STEP_OVER: Command; const STEP_INTO: Command; const STEP_OUT: Command; const CONTINUE: Command; const PAUSE: Command; const CONTINUE_ALL: Command; const PAUSE_ALL: Command; const TOGGLE_BREAKPOINT: Command; const INLINE_BREAKPOINT: Command; const ADD_CONDITIONAL_BREAKPOINT: Command; const ADD_LOGPOINT: Command; const ADD_FUNCTION_BREAKPOINT: Command; const ADD_DATA_BREAKPOINT: Command; const ENABLE_SELECTED_BREAKPOINTS: Command; const ENABLE_ALL_BREAKPOINTS: Command; const DISABLE_SELECTED_BREAKPOINTS: Command; const DISABLE_ALL_BREAKPOINTS: Command; const EDIT_BREAKPOINT: Command; const EDIT_LOGPOINT: Command; const EDIT_BREAKPOINT_CONDITION: Command; const REMOVE_BREAKPOINT: Command; const REMOVE_LOGPOINT: Command; const REMOVE_SELECTED_BREAKPOINTS: Command; const REMOVE_ALL_BREAKPOINTS: Command; const TOGGLE_BREAKPOINTS_ENABLED: Command; const SHOW_HOVER: Command; const EVALUATE_IN_DEBUG_CONSOLE: Command; const ADD_TO_WATCH: Command; const JUMP_TO_CURSOR: Command; const RUN_TO_CURSOR: Command; const RUN_TO_LINE: Command; const RESTART_FRAME: Command; const COPY_CALL_STACK: Command; const SET_VARIABLE_VALUE: Command; const COPY_VARIABLE_VALUE: Command; const COPY_VARIABLE_AS_EXPRESSION: Command; const WATCH_VARIABLE: Command; const ADD_WATCH_EXPRESSION: Command; const EDIT_WATCH_EXPRESSION: Command; const COPY_WATCH_EXPRESSION_VALUE: Command; const REMOVE_WATCH_EXPRESSION: Command; const COLLAPSE_ALL_WATCH_EXPRESSIONS: Command; const REMOVE_ALL_WATCH_EXPRESSIONS: Command; } export declare namespace DebugThreadContextCommands { const STEP_OVER: { id: string; }; const STEP_INTO: { id: string; }; const STEP_OUT: { id: string; }; const CONTINUE: { id: string; }; const PAUSE: { id: string; }; const TERMINATE: { id: string; }; } export declare namespace DebugSessionContextCommands { const STOP: { id: string; }; const RESTART: { id: string; }; const PAUSE_ALL: { id: string; }; const CONTINUE_ALL: { id: string; }; const REVEAL: { id: string; }; } export declare namespace DebugEditorContextCommands { const ADD_BREAKPOINT: { id: string; }; const ADD_CONDITIONAL_BREAKPOINT: { id: string; }; const ADD_LOGPOINT: { id: string; }; const REMOVE_BREAKPOINT: { id: string; }; const EDIT_BREAKPOINT: { id: string; }; const ENABLE_BREAKPOINT: { id: string; }; const DISABLE_BREAKPOINT: { id: string; }; const REMOVE_LOGPOINT: { id: string; }; const EDIT_LOGPOINT: { id: string; }; const ENABLE_LOGPOINT: { id: string; }; const DISABLE_LOGPOINT: { id: string; }; const JUMP_TO_CURSOR: { id: string; }; const RUN_TO_LINE: { id: string; }; } export declare namespace DebugBreakpointWidgetCommands { const ACCEPT: { id: string; }; const CLOSE: { id: string; }; } //# sourceMappingURL=debug-commands.d.ts.map