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) 305 B
import { default as React } from 'react'; interface AIAssistantModalProps { isOpen: boolean; onClose: () => void; schema?: any; onQueryLoad?: (query: any) => void; aiEndpoint?: string; } declare const AIAssistantModal: React.FC<AIAssistantModalProps>; export default AIAssistantModal;