microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/exponent/exponentHelper.d.ts
24lines · modeblame
94cd5149Artem Egorov8 years ago | 1 | // 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 ago | 4 | declare interface AppJson { |
94cd5149Artem Egorov8 years ago | 5 | public name: string; |
| 6 | public displayName?: string; | |
5c8365a6Artem Egorov8 years ago | 7 | public expo: ExpConfig; |
94cd5149Artem Egorov8 years ago | 8 | } |
| 9 | | |
242759feJiglioNero5 years ago | 10 | declare interface ExpConfig { |
94cd5149Artem Egorov8 years ago | 11 | public name: string; |
| 12 | public slug: string; | |
| 13 | public sdkVersion: string; | |
| 14 | public version?: string; | |
| 15 | public entryPoint?: string; | |
| 16 | public packagerOpts?: ExpConfigPackager; | |
a1824f64Ezio Li2 years ago | 17 | public android?: []; |
| 18 | public ios?: []; | |
| 19 | public web?:[]; | |
94cd5149Artem Egorov8 years ago | 20 | } |
| 21 | | |
242759feJiglioNero5 years ago | 22 | declare interface ExpMetroConfig { |
| 23 | public sourceExts?: string[]; | |
| 24 | } |