microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8b42d59fede8b87d9c60d394184c0413ae01c11d

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/extension/appcenter/command/commandParams.ts

12lines · 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
4export interface IDefaultCommandParams {
5 app: DefaultApp;
6}
7
8export interface DefaultApp {
9 ownerName: string;
10 appName: string;
11 identifier: string;
12 }