@antv/f2
Version:
Charts for mobile visualization.
13 lines (12 loc) • 502 B
TypeScript
import { JSX } from './jsx/jsx-namespace';
declare function cloneElement(element: any, props: any): any;
declare function map(children: any, fn: any): any;
declare function compare(nextElement: JSX.Element, lastElement: JSX.Element, callback: Function): void;
declare function toArray(element: JSX.Element): JSX.Element[] | null;
declare const Children: {
cloneElement: typeof cloneElement;
map: typeof map;
toArray: typeof toArray;
compare: typeof compare;
};
export default Children;