aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-select/c-select.types.ts
blob: 6736b84a96e9611b26d81f491ed9cff231bf91c5 (plain) (blame)
1
2
3
4
export interface CSelectOption<Value = unknown> {
  label: string
  value: Value
}