@kirz/react-native-toolkit
Version:
Toolkit to speed up React Native development
12 lines • 500 B
TypeScript
import React, { PropsWithChildren } from 'react';
export type AppSplashScreenProps = PropsWithChildren<{
visible: boolean;
SplashScreen?: React.ReactNode;
fadeDuration?: number;
hideManually?: boolean;
}>;
export declare const SplashScreenContext: React.Context<{
hide: () => void;
}>;
export declare function AppSplashScreen({ visible, SplashScreen, children, hideManually, fadeDuration, }: AppSplashScreenProps): JSX.Element | null;
//# sourceMappingURL=AppSplashScreen.d.ts.map