microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
sourcemap-handle-null-sections

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/extension/exponent/exponentHelper.d.ts

24lines · modeblame

94cd5149Artem Egorov8 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
242759feJiglioNero5 years ago4declare interface AppJson {
176f99c8ConnorQi013 months ago5name: string;
6displayName?: string;
7expo: ExpConfig;
94cd5149Artem Egorov8 years ago8}
9
242759feJiglioNero5 years ago10declare interface ExpConfig {
176f99c8ConnorQi013 months ago11name: string;
12slug: string;
13sdkVersion: string;
14version?: string;
15entryPoint?: string;
16packagerOpts?: ExpConfigPackager;
17android?: [];
18ios?: [];
19web?: [];
94cd5149Artem Egorov8 years ago20}
21
242759feJiglioNero5 years ago22declare interface ExpMetroConfig {
176f99c8ConnorQi013 months ago23sourceExts?: string[];
242759feJiglioNero5 years ago24}