microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
42b1aa5553c67930776e5dccc6981ba25a79e2ec

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/appcenter/command/commandParams.ts

28lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4import { CurrentAppDeployment } from "../appCenterConstants";
5
6export interface IDefaultCommandParams {
7 app: DefaultApp;
8}
9
10export interface DefaultApp {
11 ownerName: string;
12 appName: string;
13 identifier: string;
14 os: string;
15 currentAppDeployment: CurrentAppDeployment;
16}
17
18export interface ICodePushReleaseParams extends IDefaultCommandParams {
19 deploymentName: string;
20 updatedContentZipPath: string;
21 appVersion?: string;
22 description?: string;
23 isDisabled?: boolean;
24 isMandatory?: boolean;
25 label?: string;
26 packageHash?: string;
27 rollout?: number;
28}