12 lines
386 B
TypeScript
12 lines
386 B
TypeScript
import type { Config } from '@react-native-community/cli-types';
|
|
/**
|
|
* Upgrade application to a new version of React Native.
|
|
*/
|
|
declare function upgrade(_: string[], { root: projectDir }: Config): Promise<void>;
|
|
declare const upgradeCommand: {
|
|
name: string;
|
|
description: string;
|
|
func: typeof upgrade;
|
|
};
|
|
export default upgradeCommand;
|
|
//# sourceMappingURL=upgrade.d.ts.map
|