UNPKG

react-native-cn-richtext-editor

Version:
13 lines 368 B
import { NativeModules } from 'react-native'; const { ExponentSplashScreen: SplashScreen = {} } = NativeModules; export function preventAutoHide() { if (SplashScreen.preventAutoHide) { SplashScreen.preventAutoHide(); } } export function hide() { if (SplashScreen.hide) { SplashScreen.hide(); } } //# sourceMappingURL=SplashScreen.js.map