UNPKG

narraleaf-react

Version:

A React visual novel player framework

10 lines (9 loc) 356 B
import React from "react"; import { HTMLMotionProps } from "motion/react"; export type PageProps = Readonly<{ id: string; children?: React.ReactNode; className?: string; style?: React.CSSProperties; } & HTMLMotionProps<"div">>; export declare function Page({ id, children, className, style, ...motionProps }: PageProps): React.JSX.Element;