UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

18 lines (17 loc) 379 B
import { Base, Type } from "igniteui-react-core"; import { KDPointData } from "./KDPointData"; import { SearchData } from "./SearchData"; /** * @hidden */ export declare class KDTreeNode2D extends Base { static $t: Type; g: boolean; f: boolean; h: number; b: KDPointData; c: KDTreeNode2D; d: KDTreeNode2D; a: KDPointData[]; e: SearchData; }