1/** 2 * Copyright (c) 2022 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 7export interface SupportedWorkspaceClass { 8 id: string; 9 category: string; 10 displayName: string; 11 description: string; 12 powerups: number; 13 isDefault: boolean; 14} 15 16