aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/types/select-options-item.model.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-02-10 09:05:29 +0100
committerChocobozzz <me@florianbigard.com>2021-02-10 11:36:40 +0100
commit21e493d4d8acb7a650eff3a30cd7e086b3cb8a28 (patch)
treef3a451d6a59925907c62b0c36db99745a43b67db /client/src/types/select-options-item.model.ts
parentead64cdf8d917fa0d6a20271e42378f38e5f2407 (diff)
downloadPeerTube-21e493d4d8acb7a650eff3a30cd7e086b3cb8a28.tar.gz
PeerTube-21e493d4d8acb7a650eff3a30cd7e086b3cb8a28.tar.zst
PeerTube-21e493d4d8acb7a650eff3a30cd7e086b3cb8a28.zip
Add ability to set a custom quota
Diffstat (limited to 'client/src/types/select-options-item.model.ts')
-rw-r--r--client/src/types/select-options-item.model.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/src/types/select-options-item.model.ts b/client/src/types/select-options-item.model.ts
new file mode 100644
index 000000000..895965a74
--- /dev/null
+++ b/client/src/types/select-options-item.model.ts
@@ -0,0 +1,13 @@
1export interface SelectOptionsItem {
2 id: string | number
3 label: string
4 description?: string
5 group?: string
6 groupLabel?: string
7}
8
9export interface SelectChannelItem extends SelectOptionsItem {
10 id: number
11 support: string
12 avatarPath?: string
13}