// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
import { CurrentAppDeployments } from "../appCenterConstants";
export interface DefaultApp {
ownerName: string;
appName: string;
identifier: string;
targetBinaryVersion: string;
isMandatory: boolean;
os: string;
currentAppDeployments: CurrentAppDeployments;
}
export interface IDefaultCommandParams {
app: DefaultApp;
}
export interface ICodePushReleaseParams extends IDefaultCommandParams {
deploymentName: string;
updatedContentZipPath: string;
appVersion?: string;
description?: string;
isDisabled?: boolean;
isMandatory?: boolean;
label?: string;
packageHash?: string;
rollout?: number;
token?: string;
}microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/appcenter/command/commandParams.ts
30lines · modepreview