microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.6

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/extension/appcenter/command/commandParams.ts

30lines · modeblame

bb45fbe6max-mironov8 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
ef14e11bmax-mironov8 years ago4import { CurrentAppDeployments } from "../appCenterConstants";
4a66f08bmax-mironov8 years ago5
bb45fbe6max-mironov8 years ago6export interface DefaultApp {
7ownerName: string;
8appName: string;
9identifier: string;
2ceda59emax-mironov8 years ago10targetBinaryVersion: string;
11isMandatory: boolean;
e26df9e4max-mironov8 years ago12os: string;
ef14e11bmax-mironov8 years ago13currentAppDeployments: CurrentAppDeployments;
ff1d5ab0max-mironov8 years ago14}
15
a653acfemax-mironov8 years ago16export interface IDefaultCommandParams {
17app: DefaultApp;
18}
ff1d5ab0max-mironov8 years ago19export interface ICodePushReleaseParams extends IDefaultCommandParams {
20deploymentName: string;
21updatedContentZipPath: string;
22appVersion?: string;
23description?: string;
24isDisabled?: boolean;
25isMandatory?: boolean;
26label?: string;
27packageHash?: string;
28rollout?: number;
bf370babSergey Akhalkov8 years ago29token?: string;
ff1d5ab0max-mironov8 years ago30}