[Gekidou] Multi-Server support UI (#5912)

* Multi-Server support UI

* feedback review

* Apply suggestions from code review

Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com>

Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com>
This commit is contained in:
Elias Nahum
2022-01-28 09:51:30 -03:00
committed by GitHub
parent dff4f91441
commit d14ce66897
25 changed files with 1092 additions and 218 deletions

View File

@@ -0,0 +1,13 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import type {Subscription} from 'rxjs';
export type UnreadMessages = {
mentions: number;
unread: boolean;
};
export type UnreadSubscription = UnreadMessages & {
subscription?: Subscription;
};