UNPKG

@tabula/ui-multi-selector

Version:

A MultiSelector allows users to select one or more items from a list of choices, or suggest own item.

10 lines (9 loc) 302 B
import { BatchAction, UpdateHandler } from '../../../types'; import { Item } from '../../Dropdown.types'; type Options = { addFound: BatchAction; onUpdate: UpdateHandler; search: string; }; export declare function buildCustomValue({ addFound, onUpdate, search }: Options): Item; export {};