drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
11 lines (10 loc) • 346 B
TypeScript
import { default as React } from 'react';
import { ChartProps } from '../../types';
/**
* SankeyChart Component
*
* Renders a Sankey diagram visualization from FlowChartData.
* Shows flow paths with nodes at each layer and links between them.
*/
declare const SankeyChart: React.NamedExoticComponent<ChartProps>;
export default SankeyChart;