UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

18 lines (17 loc) 398 B
import { Base, Type } from "igniteui-angular-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; }