UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

11 lines (10 loc) 295 B
import type { Node } from 'd3-hierarchy'; export type DrillDownOptions = { originData?: Node[]; layout?: any; [key: string]: any; }; /** * TreemapDrillDown interaction. */ export declare function TreemapDrillDown(drillDownOptions?: DrillDownOptions): (context: any) => () => void;