Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/typings/vscode-globals-ttp.d.ts
3290 views
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
6
// AMD2ESM migration relevant
7
8
declare global {
9
10
var _VSCODE_WEB_PACKAGE_TTP: Pick<TrustedTypePolicy<{
11
createScriptURL(value: string): string;
12
}>, 'name' | 'createScriptURL'> | undefined;
13
}
14
15
// fake export to make global work
16
export { }
17
18