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.

12 lines
372 B

import { Config } from '@react-native-community/cli-types';
/**
* Upgrade application to a new version of React Native.
*/
declare function upgrade(argv: Array<string>, ctx: Config): Promise<void>;
declare const upgradeCommand: {
name: string;
description: string;
func: typeof upgrade;
};
export default upgradeCommand;
//# sourceMappingURL=upgrade.d.ts.map