aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-buttons-select/c-buttons-select.types.ts
blob: ccb110d45a8474dadbe454bd69b8f53f1ac5b03c (plain) (blame)
1
2
3
4
5
import type { CSelectOption } from '../c-select/c-select.types';

export type CButtonSelectOption<T> = CSelectOption<T> & {
  tooltip?: string
};