Type alias MuiSearchProps<T>

MuiSearchProps<T>: {
    columns: GridColumns;
    dataGridHeight?: any;
    dataGridWidth?: any;
    getDataList: ((value: string) => Promise<T[]>);
    inputValue?: string;
    onInputChange?: ((value: string) => void);
    onRowClick?: GridEventListener<GridEvents.rowClick>;
    placement?: PopperPlacementType;
} & Omit<DropDownInputProps, "value" | "onChange" | "variant" | "downRander">

Type Parameters

Generated using TypeDoc