aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/types/select-options-item.model.ts
blob: 895965a74d2d0faf8deb318b7c065552295d13a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export interface SelectOptionsItem {
  id: string | number
  label: string
  description?: string
  group?: string
  groupLabel?: string
}

export interface SelectChannelItem extends SelectOptionsItem {
  id: number
  support: string
  avatarPath?: string
}