drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
8 lines (7 loc) • 342 B
TypeScript
import { default as React } from 'react';
import { AnalyticsPortletProps } from '../types';
interface AnalyticsPortletRef {
refresh: () => void;
}
declare const AnalyticsPortlet: React.MemoExoticComponent<React.ForwardRefExoticComponent<AnalyticsPortletProps & React.RefAttributes<AnalyticsPortletRef>>>;
export default AnalyticsPortlet;