UNPKG

@salesforce/salesforcedx-vscode-test-tools

Version:
32 lines (26 loc) 819 B
/* * Copyright (c) 2025, salesforce.com, inc. * All rights reserved. * Licensed under the BSD 3-Clause license. * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ /** * UI Interaction Tools * * This module provides access to VSCode UI elements like workbench, editors, * navigation components, panels, views, notifications, and dialogs. */ // Workbench & Editors export * from './workbench'; export * from './textEditorView'; // Navigation Elements export * from './sideBar'; export * from './commandPrompt'; export * from './statusBar'; // Panels & Views export * from './outputView'; export * from './problemsView'; export * from './terminalView'; // Notifications & Dialogs export * from './notifications'; export * from './modalDialog';