@expo/prebuild-config
Version:
Get the prebuild config
11 lines (10 loc) • 371 B
TypeScript
import { ConfigPlugin, type XcodeProject } from '@expo/config-plugins';
export declare const withIosSplashXcodeProject: ConfigPlugin;
/**
* Modifies `.pbxproj` by:
* - adding reference for `.storyboard` file
*/
export declare function setSplashStoryboardAsync({ projectName, project, }: {
projectName: string;
project: XcodeProject;
}): Promise<XcodeProject>;