From 21e493d4d8acb7a650eff3a30cd7e086b3cb8a28 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 10 Feb 2021 09:05:29 +0100 Subject: Add ability to set a custom quota --- client/src/types/select-options-item.model.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 client/src/types/select-options-item.model.ts (limited to 'client/src/types/select-options-item.model.ts') 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 @@ +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 +} -- cgit v1.2.3