@nx/react-native
Version:
19 lines (18 loc) • 621 B
TypeScript
import { GeneratorCallback } from '@nx/devkit';
/**
* Run pod install on ios directory
* @param iosDirectory ios directory that contains Podfile
* @returns resolve with 0 if not error, reject with error otherwise
*/
export declare function runPodInstall(iosDirectory: string, install?: boolean, options?: {
buildFolder?: string;
repoUpdate?: boolean;
deployment?: boolean;
useBundler?: boolean;
}): GeneratorCallback;
export declare function podInstall(iosDirectory: string, options?: {
buildFolder?: string;
repoUpdate?: boolean;
deployment?: boolean;
useBundler?: boolean;
}): void;