Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/gitpod-protocol/src/wsready.ts
2498 views
1
/**
2
* Copyright (c) 2023 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
// generated using github.com/32leaves/bel on 2024-09-10 10:27:59.702679509 +0000 UTC m=+0.029900569
8
// DO NOT MODIFY
9
10
export interface WorkspaceReadyMessage {
11
source: WorkspaceInitSource;
12
metrics: InitializerMetric[];
13
}
14
15
export enum WorkspaceInitSource {
16
WorkspaceInitFromBackup = "from-backup",
17
WorkspaceInitFromPrebuild = "from-prebuild",
18
WorkspaceInitFromOther = "from-other",
19
}
20
export interface InitializerMetric {
21
type: string;
22
duration: number;
23
size: number;
24
}
25
26