Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/gitpod-db/src/workspace-cluster-db.ts
2498 views
1
/**
2
* Copyright (c) 2021 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
import * as protocol from "@gitpod/gitpod-protocol/lib/workspace-cluster";
8
9
// This interface lives in protocol due to dependency issues but is re-exported here for consistency.
10
export const WorkspaceClusterDB = protocol.WorkspaceClusterDB;
11
export interface WorkspaceClusterDB extends protocol.WorkspaceClusterDB {}
12
13