summaryrefslogtreecommitdiff
path: root/src/common/types/select.ts
blob: f61dc08b4377a7b914ec0e2b84bc2cdaa3c4f4f6 (plain)
1
2
3
4
export type SelectOption = {
  value: string | number;
  label: string;
};