narraleaf
Version:
Create your visual novel with Electron and React
9 lines (8 loc) • 308 B
TypeScript
import React from "react";
type NarraLeafReact = typeof import("narraleaf-react");
declare const AppRoot: ({ story, children, lib }: {
story: InstanceType<NarraLeafReact["Story"]>;
children: React.ReactNode;
lib: NarraLeafReact;
}) => import("react/jsx-runtime").JSX.Element;
export { AppRoot };