You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
declare const _default: ({
|
|
name: string;
|
|
description: string;
|
|
func: () => Promise<void>;
|
|
} | {
|
|
name: string;
|
|
description: string;
|
|
func: (_: string[], ctx: import("@react-native-community/cli-types").Config, args: import("./runIOS").FlagsT) => Promise<void>;
|
|
examples: {
|
|
desc: string;
|
|
cmd: string;
|
|
}[];
|
|
options: ({
|
|
name: string;
|
|
description: string;
|
|
default?: undefined;
|
|
parse?: undefined;
|
|
} | {
|
|
name: string;
|
|
default: string | number;
|
|
parse: NumberConstructor;
|
|
description?: undefined;
|
|
} | {
|
|
name: string;
|
|
description: string;
|
|
default: string | undefined;
|
|
parse?: undefined;
|
|
})[];
|
|
} | {
|
|
name: string;
|
|
description: string;
|
|
func: (_: string[], ctx: import("@react-native-community/cli-types").Config, args: import("./buildIOS").FlagsT) => void | Promise<string>;
|
|
examples: {
|
|
desc: string;
|
|
cmd: string;
|
|
}[];
|
|
options: ({
|
|
name: string;
|
|
description: string;
|
|
default?: undefined;
|
|
parse?: undefined;
|
|
} | {
|
|
name: string;
|
|
default: string | number;
|
|
parse: NumberConstructor;
|
|
description?: undefined;
|
|
} | {
|
|
name: string;
|
|
description: string;
|
|
default: string | undefined;
|
|
parse?: undefined;
|
|
})[];
|
|
})[];
|
|
export default _default;
|
|
//# sourceMappingURL=index.d.ts.map
|