microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.5

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/extension/appcenter/command/commandParams.ts

30lines · 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 { CurrentAppDeployments } from "../appCenterConstants";
5
6export interface DefaultApp {
7 ownerName: string;
8 appName: string;
9 identifier: string;
10 targetBinaryVersion: string;
11 isMandatory: boolean;
12 os: string;
13 currentAppDeployments: CurrentAppDeployments;
14}
15
16export interface IDefaultCommandParams {
17 app: DefaultApp;
18}
19export interface ICodePushReleaseParams extends IDefaultCommandParams {
20 deploymentName: string;
21 updatedContentZipPath: string;
22 appVersion?: string;
23 description?: string;
24 isDisabled?: boolean;
25 isMandatory?: boolean;
26 label?: string;
27 packageHash?: string;
28 rollout?: number;
29 token?: string;
30}