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) • 380 B
TypeScript
import { default as React } from 'react';
interface CustomDateDropdownProps {
isOpen: boolean;
onClose: () => void;
onDateRangeChange: (dateRange: string | string[]) => void;
currentDateRange?: string | string[];
anchorRef: React.RefObject<HTMLElement>;
}
declare const CustomDateDropdown: React.FC<CustomDateDropdownProps>;
export default CustomDateDropdown;