UNPKG

narraleaf

Version:

Create your visual novel with Electron and React

12 lines (11 loc) 346 B
import { ReactNode } from "react"; type SplashScreenContextType = { finish(): void; reset(): void; isFinished: boolean; }; export declare function SplashScreenProvider({ children }: { children?: ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useSplashScreen(): SplashScreenContextType; export {};