UNPKG

xatto

Version:

xatto is View Layer Library based on Function and Context using VirtualDOM. This is developed by forking from jorgebucaran/superfine.

12 lines (11 loc) 348 B
import { Component } from './Component'; import { VNode } from './VNode'; /** * x * * @param name {string | Component} * @param props {object} * @param ... {object} * @return {VNode} */ export declare function x(name: string | Component | ((name: any, props: any, ...rest: any[]) => VNode), props: any, ...rest: any[]): VNode;