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 { |
176f99c8ConnorQi013 months ago | 5 | name: string; |
| 6 | displayName?: string; | |
| 7 | expo: ExpConfig; | |
94cd5149Artem Egorov8 years ago | 8 | } |
| 9 | | |
242759feJiglioNero5 years ago | 10 | declare interface ExpConfig { |
176f99c8ConnorQi013 months ago | 11 | name: string; |
| 12 | slug: string; | |
| 13 | sdkVersion: string; | |
| 14 | version?: string; | |
| 15 | entryPoint?: string; | |
| 16 | packagerOpts?: ExpConfigPackager; | |
| 17 | android?: []; | |
| 18 | ios?: []; | |
| 19 | web?: []; | |
94cd5149Artem Egorov8 years ago | 20 | } |
| 21 | | |
242759feJiglioNero5 years ago | 22 | declare interface ExpMetroConfig { |
176f99c8ConnorQi013 months ago | 23 | sourceExts?: string[]; |
242759feJiglioNero5 years ago | 24 | } |