Path: blob/main/extensions/copilot/src/util/vs/vscode-globals-product.d.ts
13397 views
//!!! DO NOT modify, this file was COPIED from 'microsoft/vscode'12/*---------------------------------------------------------------------------------------------3* Copyright (c) Microsoft Corporation. All rights reserved.4* Licensed under the MIT License. See License.txt in the project root for license information.5*--------------------------------------------------------------------------------------------*/67// AMD2ESM migration relevant89declare global {1011/**12* Holds the file root for resources.13*/14var _VSCODE_FILE_ROOT: string;1516/**17* CSS loader that's available during development time.18* DO NOT call directly, instead just import css modules, like `import 'some.css'`19*/20var _VSCODE_CSS_LOAD: (module: string) => void;2122/**23* @deprecated You MUST use `IProductService` whenever possible.24*/25var _VSCODE_PRODUCT_JSON: Record<string, any>;26/**27* @deprecated You MUST use `IProductService` whenever possible.28*/29var _VSCODE_PACKAGE_JSON: Record<string, any>;3031/**32* Used to disable CSS import map loading during development. Needed33* when a bundler is used that loads the css directly.34* @deprecated Avoid using this variable.35*/36var _VSCODE_DISABLE_CSS_IMPORT_MAP: boolean | undefined;3738/**39* If this variable is set, and the source code references another module40* via import, the (relative) module should be referenced (instead of the41* JS module in the out folder).42* @deprecated Avoid using this variable.43*/44var _VSCODE_USE_RELATIVE_IMPORTS: boolean | undefined;45}4647// fake export to make global work48export { }495051