UNPKG

@activecollab/components

Version:

ActiveCollab Components

12 lines 469 B
import { FC, HTMLAttributes } from "react"; import { DataType, SelectedType } from "./Filter"; export interface StartMenuProps { data: Array<DataType>; selected: SelectedType; onItemClick: (id: number | string) => void; onHeightChange: (height: number) => void; shouldRenderSubmenus: boolean; emptyFilterText?: string; } export declare const StartMenu: FC<StartMenuProps & HTMLAttributes<HTMLDivElement>>; //# sourceMappingURL=StartMenu.d.ts.map