Path: blob/main/components/gitpod-protocol/src/typings/globals.ts
2500 views
/**1* Copyright (c) 2020 Gitpod GmbH. All rights reserved.2* Licensed under the GNU Affero General Public License (AGPL).3* See License.AGPL.txt in the project root for license information.4*/56// eslint-disable-next-line @typescript-eslint/no-unused-vars7interface Window {8// gitpod is used by supervisor/frontend and vscode browser https://github.com/gitpod-io/openvscode-server/blob/dadd40deda5959c0efdaa0c7d02ab64b6f8b5ad0/src/vs/gitpod/browser/workbench/workbench.ts#L79gitpod: {10ideService?: import("../ide-frontend-service").IDEFrontendService;11loggedUserID?: string;1213openDesktopIDE(url: string): void;1415encrypt(content: string): string;16decrypt(content: string): string;17isEncryptedData(content: string): boolean;18};19}202122