UNPKG

drizzle-cube

Version:

Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.

17 lines (16 loc) 511 B
import { FlowChartData } from '../types/flow'; interface DebugModalProps { chartConfig: any; displayConfig: any; queryObject: any; data: any[] | FlowChartData; chartType: string; cacheInfo?: { hit: true; cachedAt: string; ttlMs: number; ttlRemainingMs: number; } | null; } export default function DebugModal({ chartConfig, displayConfig, queryObject, data, chartType, cacheInfo }: DebugModalProps): import("react/jsx-runtime").JSX.Element; export {};