drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
12 lines (11 loc) • 333 B
TypeScript
import { default as React } from 'react';
import { ApiConfig } from './types';
interface SetupPanelProps {
isOpen: boolean;
onToggle: () => void;
config: ApiConfig;
onConfigChange: (config: ApiConfig) => void;
onReset: () => void;
}
declare const SetupPanel: React.FC<SetupPanelProps>;
export default SetupPanel;