// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. type Thread = { id: string; reply_count: number; last_reply_at: number; last_viewed_at: number; participants: UserProfile[]; post: Post; is_following?: boolean; unread_replies: number; unread_mentions: number; loaded_in_global_threads: boolean; }; type ThreadParticipant = { id: $ID; thread_id: $ID; };