GT2/Ejectable/node_modules/@expo/configure-splash-screen/build/android/Styles.xml.d.ts
2021-08-16 00:14:59 +00:00

17 lines
609 B
TypeScript

import { Color } from '../SplashScreenConfig';
import { SplashScreenStatusBarStyleType } from '../constants';
/**
* @param androidMainPath Path to the main directory containing code and resources in Android project. In general that would be `android/app/src/main`.
*/
export default function configureStylesXml(androidMainPath: string, config?: {
statusBar?: {
style?: SplashScreenStatusBarStyleType;
hidden?: boolean;
backgroundColor?: Color;
};
darkMode?: {
statusBar?: {
style?: SplashScreenStatusBarStyleType;
};
};
}): Promise<void>;