@nx/react-native
Version:
7 lines (6 loc) • 320 B
TypeScript
import { ExecutorContext } from '@nx/devkit';
import { ReactNativePodInstallOptions } from './schema';
export interface ReactNativePodInstallOutput {
success: boolean;
}
export default function podInstall(options: ReactNativePodInstallOptions, context: ExecutorContext): AsyncGenerator<ReactNativePodInstallOutput>;