@nx/react-native
Version:
11 lines (10 loc) • 581 B
TypeScript
/**
* @deprecated use `nx run @nx/react-native:upgrade` instead.
* TODO (@xiongemi): remove this generator for nx v19
* This function is a destructive command that replace React Native iOS and Android code with latest.
* It would replace the Android and iOS folder entirely.
*/
import { GeneratorCallback, Tree } from '@nx/devkit';
import { UpgradeNativeConfigureSchema } from './schema';
export declare function reactNativeUpgradeNativeGenerator(host: Tree, schema: UpgradeNativeConfigureSchema): Promise<GeneratorCallback>;
export default reactNativeUpgradeNativeGenerator;