UNPKG

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) 435 B
import { PortletConfig } from '../types'; interface PortletContainerProps { portlet: PortletConfig; editable?: boolean; onEdit?: (portlet: PortletConfig) => void; onDelete?: (portletId: string) => void; onRefresh?: (portletId: string) => void; } export default function PortletContainer({ portlet, editable, onEdit, onDelete, onRefresh }: PortletContainerProps): import("react/jsx-runtime").JSX.Element; export {};