UNPKG

amotify

Version:

UI Component for React,NextJS,esbuild

22 lines (21 loc) 665 B
/// <reference types="react" /> import { ReactElement } from '../@declares'; declare global { namespace React { namespace JSX { interface IntrinsicElements { 'amotify-app': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>; } } } } declare namespace LaunchReactApp { type Input = { children: ReactElement; inlineCSS?: string; isRootPage?: boolean; originClassName?: string; }; } declare const LaunchReactApp: (p: LaunchReactApp.Input) => import("react/jsx-runtime").JSX.Element; export { LaunchReactApp, LaunchReactApp as default };