/********************************************************************** * Copyright (c) 2022-2024 * * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 ***********************************************************************/ import { V1alpha2DevWorkspace, V1alpha2DevWorkspaceTemplate } from '@devfile/api'; /** * Context used on every call to this service to update DevWorkspace */ export interface DevfileContext { devfile: any; devWorkspace: V1alpha2DevWorkspace; devWorkspaceTemplates: V1alpha2DevWorkspaceTemplate[]; suffix: string; } /** * Enum for Devfile schema versions */ export declare enum DevfileSchemaVersion { V200 = "2.0.0", V210 = "2.1.0", V220 = "2.2.0", V221 = "2.2.1", V222 = "2.2.2", V230 = "2.3.0" }