UNPKG

drizzle-cube

Version:

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

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