microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/appcenter/command/commandParams.ts
24lines · 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 | |
| 4 | export interface IDefaultCommandParams { |
| 5 | app: DefaultApp; |
| 6 | } |
| 7 | |
| 8 | export interface DefaultApp { |
| 9 | ownerName: string; |
| 10 | appName: string; |
| 11 | identifier: string; |
| 12 | } |
| 13 | |
| 14 | export interface ICodePushReleaseParams extends IDefaultCommandParams { |
| 15 | deploymentName: string; |
| 16 | updatedContentZipPath: string; |
| 17 | appVersion?: string; |
| 18 | description?: string; |
| 19 | isDisabled?: boolean; |
| 20 | isMandatory?: boolean; |
| 21 | label?: string; |
| 22 | packageHash?: string; |
| 23 | rollout?: number; |
| 24 | } |