@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) • 308 B
TypeScript
import { BatchAction, UpdateHandler } from '../../../types';
import { Item } from '../../Dropdown.types';
type Options = {
addFound: BatchAction;
onUpdate: UpdateHandler;
values: string[];
};
export declare function buildBulkCustomValue({ addFound, onUpdate, values }: Options): Item;
export {};