-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathContainerEditContext.ts
More file actions
16 lines (13 loc) · 1021 Bytes
/
ContainerEditContext.ts
File metadata and controls
16 lines (13 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { type ExecuteActivityContext } from "@microsoft/vscode-azext-utils";
import { type SetTelemetryProps } from "../../telemetry/SetTelemetryProps";
import { type ContainerUpdateTelemetryProps as TelemetryProps } from "../../telemetry/commandTelemetryProps";
import { type IContainerAppContext } from "../IContainerAppContext";
import { type ImageSourceBaseContext } from "../image/imageSource/ImageSourceContext";
export interface ContainerEditBaseContext extends IContainerAppContext, ImageSourceBaseContext, ExecuteActivityContext {
containersIdx: number;
}
export type ContainerEditContext = ContainerEditBaseContext & SetTelemetryProps<TelemetryProps>;