Delete Unused API (#244529)

ref https://github.com/microsoft/vscode/issues/243615
This commit is contained in:
Tyler James Leonhardt
2025-03-24 17:48:56 -07:00
committed by GitHub
parent 8d163b1c87
commit c244b199e2
7 changed files with 0 additions and 60 deletions

View File

@@ -1,14 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
declare module 'vscode' {
// https://github.com/microsoft/vscode/issues/243615
export namespace env {
export function isTrustedExternalUris(uri: Uri[]): boolean[];
export function extractExternalUris(uris: Uri[]): Thenable<string[]>;
}
}