narraleaf
Version:
Create your visual novel with Electron and React
10 lines (9 loc) • 313 B
TypeScript
import { ReactNode } from "react";
import { App } from "../../../client/app/client/app";
type ContextType = App;
export declare function AppProvider({ children, app }: {
children?: ReactNode;
app: App;
}): import("react/jsx-runtime").JSX.Element;
export declare function useApp(): ContextType;
export {};