UNPKG

spiel-render

Version:

render for every framework that use ultradom

9 lines (8 loc) 274 B
import { VNode } from "ultradom"; export declare type Keys = string; export declare type State = { [k in Keys]: any; }; export declare type View = (state: any) => VNode<any>; export declare type JSXElements = VNode<any>; export declare type Children = Array<VNode<{}>>;