UNPKG

@tntsuperman/rjs

Version:

simple, react, fast JavaScript framework

11 lines (10 loc) 240 B
import { VNode } from "./element"; type Content = string | VNode<ChildNode>; type SEG = { (...fn: [() => void]): SEG; (...content: Content[]): VNode<HTMLElement>; }; export declare const seg: { [key: string]: SEG; }; export {};