Path: blob/main/components/gitpod-protocol/src/wsready.ts
2498 views
/**1* Copyright (c) 2023 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// generated using github.com/32leaves/bel on 2024-09-10 10:27:59.702679509 +0000 UTC m=+0.0299005697// DO NOT MODIFY89export interface WorkspaceReadyMessage {10source: WorkspaceInitSource;11metrics: InitializerMetric[];12}1314export enum WorkspaceInitSource {15WorkspaceInitFromBackup = "from-backup",16WorkspaceInitFromPrebuild = "from-prebuild",17WorkspaceInitFromOther = "from-other",18}19export interface InitializerMetric {20type: string;21duration: number;22size: number;23}242526