Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

27 lines
834 B
TypeScript

export declare const commands: {
info: {
name: string;
description: string;
func: (_argv: string[], ctx: import("@react-native-community/cli-types").Config) => Promise<void>;
};
doctor: {
func: import("@react-native-community/cli-types").DetachedCommandFunction<{
fix: boolean | void;
contributor: boolean | void;
}>;
detached: boolean;
name: string;
description: string;
options: {
name: string;
description: string;
}[];
};
};
/**
* @todo
* We should not rely on this file from other packages, e.g. CLI. We probably need to
* refactor the init in order to remove that connection.
*/
export { default as versionRanges } from './tools/versionRanges';
//# sourceMappingURL=index.d.ts.map