UNPKG

lupine.web

Version:

lupine.web is a extremely fast, small size and lightweight frontend framework, using React TSX syntax.

7 lines (5 loc) 258 B
import { VNode } from '../jsx'; export interface MounterProps { mountInnerComponent: (selector: string | null | Element, jsxNodes: VNode<any>) => Promise<void>; mountOuterComponent: (selector: string | Element, jsxNodes: VNode<any>) => Promise<void>; }