forked from Ivasoft/mattermost-mobile
[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:
13
types/database/subscriptions/index.ts
Normal file
13
types/database/subscriptions/index.ts
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user