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) • 321 B
TypeScript
import { default as React } from 'react';
interface XTDDropdownProps {
isOpen: boolean;
onClose: () => void;
onSelect: (xtdValue: string) => void;
currentXTD?: string | null;
anchorRef: React.RefObject<HTMLElement>;
}
declare const XTDDropdown: React.FC<XTDDropdownProps>;
export default XTDDropdown;