1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6declare module 'vscode' { 7 8 export namespace workspace { 9 10 /** 11 * Indicates whether the current workspace is an agent sessions workspace. 12 * 13 * Agent sessions workspace is a special workspace used for AI agent interactions 14 * where the window is dedicated to agent session management. 15 */ 16 export const isAgentSessionsWorkspace: boolean; 17 } 18} 19 20