microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
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 | |
| 4 | declare interface AppJson { |
| 5 | name: string; |
| 6 | displayName?: string; |
| 7 | expo: ExpConfig; |
| 8 | } |
| 9 | |
| 10 | declare interface ExpConfig { |
| 11 | name: string; |
| 12 | slug: string; |
| 13 | sdkVersion: string; |
| 14 | version?: string; |
| 15 | entryPoint?: string; |
| 16 | packagerOpts?: ExpConfigPackager; |
| 17 | android?: []; |
| 18 | ios?: []; |
| 19 | web?: []; |
| 20 | } |
| 21 | |
| 22 | declare interface ExpMetroConfig { |
| 23 | sourceExts?: string[]; |
| 24 | } |
| 25 | |