1 | declare const _default: ({
|
2 | name: string;
|
3 | description: string;
|
4 | func: () => Promise<void>;
|
5 | } | {
|
6 | name: string;
|
7 | description: string;
|
8 | func: (_argv: string[], config: import("@react-native-community/cli-types").Config, args: import("./runAndroid").Flags) => Promise<void>;
|
9 | options: ({
|
10 | name: string;
|
11 | description: string;
|
12 | parse?: undefined;
|
13 | default?: undefined;
|
14 | } | {
|
15 | name: string;
|
16 | description: string;
|
17 | parse: (val: string) => string[];
|
18 | default?: undefined;
|
19 | } | {
|
20 | name: string;
|
21 | description: string;
|
22 | default: boolean;
|
23 | parse?: undefined;
|
24 | } | {
|
25 | name: string;
|
26 | default: string | number;
|
27 | parse: NumberConstructor;
|
28 | description?: undefined;
|
29 | } | {
|
30 | name: string;
|
31 | description: string;
|
32 | default: string | undefined;
|
33 | parse?: undefined;
|
34 | } | {
|
35 | name: string;
|
36 | description: string;
|
37 | parse: NumberConstructor;
|
38 | default?: undefined;
|
39 | })[];
|
40 | })[];
|
41 | export default _default;
|
42 |
|
\ | No newline at end of file |