microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
test-microbuild1

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 {
94cd5149Artem Egorov8 years ago5public name: string;
6public displayName?: string;
5c8365a6Artem Egorov8 years ago7public expo: ExpConfig;
94cd5149Artem Egorov8 years ago8}
9
242759feJiglioNero5 years ago10declare interface ExpConfig {
94cd5149Artem Egorov8 years ago11public name: string;
12public slug: string;
13public sdkVersion: string;
14public version?: string;
15public entryPoint?: string;
16public packagerOpts?: ExpConfigPackager;
a1824f64Ezio Li2 years ago17public android?: [];
18public ios?: [];
19public web?:[];
94cd5149Artem Egorov8 years ago20}
21
242759feJiglioNero5 years ago22declare interface ExpMetroConfig {
23public sourceExts?: string[];
24}