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