react-native-integrate
Version:
Automate integration of additional code into React Native projects
15 lines (14 loc) • 469 B
TypeScript
import { XcodeProjectType } from 'xcode';
import { XcodeTaskType } from '../../types/mod.types';
export declare function xcodeTask(args: {
configPath: string;
packageName: string;
content: XcodeProjectType;
task: XcodeTaskType;
}): Promise<XcodeProjectType>;
export declare function runTask(args: {
configPath: string;
packageName: string;
task: XcodeTaskType;
}): Promise<void>;
export declare const summary = "Xcode project modification";