UNPKG

wix-style-react

Version:
12 lines (10 loc) 437 B
import { InputWithOptionsDriver } from '../InputWithOptions/InputWithOptions.driver'; import { OmitPolyfill } from '../common'; export interface MultiSelectCheckboxDriver extends OmitPolyfill<InputWithOptionsDriver, 'driver'> { driver: { getNumOfLabels: () => number; getLabels: (delimiter?: string) => string[]; getLabelAt: (index: number, delimiter?: string) => string; } & Pick<InputWithOptionsDriver, 'driver'>; }