microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fix-ts-error1

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/extension/exponent/exponentHelper.d.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
4declare interface AppJson {
5 public name: string;
6 public displayName?: string;
7 public expo: ExpConfig;
8}
9
10declare interface ExpConfig {
11 public name: string;
12 public slug: string;
13 public sdkVersion: string;
14 public version?: string;
15 public entryPoint?: string;
16 public packagerOpts?: ExpConfigPackager;
17 public android?: [];
18 public ios?: [];
19 public web?:[];
20}
21
22declare interface ExpMetroConfig {
23 public sourceExts?: string[];
24}
25