GT2/Ejectable/node_modules/@expo/configure-splash-screen/build/ios/Storyboard.d.ts

11 lines
398 B
TypeScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
import { SplashScreenImageResizeModeType } from '../constants';
import { IosProject } from './pbxproj';
/**
* Creates [STORYBOARD] file containing ui description of Splash/Launch Screen.
* > WARNING: modifies `pbxproj`
*/
export default function configureStoryboard(iosProject: IosProject, config?: {
imageResizeMode?: SplashScreenImageResizeModeType;
image?: string;
}): Promise<void>;