]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/types/select-options-item.model.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / types / select-options-item.model.ts
1 export interface SelectOptionsItem {
2 id: string | number
3 label: string
4 description?: string
5 group?: string
6 groupLabel?: string
7 }
8
9 export interface SelectChannelItem extends SelectOptionsItem {
10 id: number
11 support: string
12 avatarPath?: string
13 }