Path: blob/main/src/typings/vscode-globals-product.d.ts
3290 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45// AMD2ESM migration relevant67declare global {89/**10* Holds the file root for resources.11*/12var _VSCODE_FILE_ROOT: string;1314/**15* CSS loader that's available during development time.16* DO NOT call directly, instead just import css modules, like `import 'some.css'`17*/18var _VSCODE_CSS_LOAD: (module: string) => void;1920/**21* @deprecated You MUST use `IProductService` whenever possible.22*/23var _VSCODE_PRODUCT_JSON: Record<string, any>;24/**25* @deprecated You MUST use `IProductService` whenever possible.26*/27var _VSCODE_PACKAGE_JSON: Record<string, any>;2829}3031// fake export to make global work32export { }333435