message_list_view: Use more specific type for message_id_to_focus.

This commit is contained in:
evykassirer
2024-09-11 15:11:19 -07:00
committed by Tim Abbott
parent 93d8db11bf
commit 0c4186d91f

View File

@@ -336,10 +336,16 @@ function get_users_for_recipient_row(message: Message): RecipientRowUser[] {
return users.sort(compare_by_name);
}
let message_id_to_focus_after_processing_message_events: {
id: number | undefined;
selectionStart: number | undefined;
selectionEnd: number | undefined;
let message_id_to_focus_after_processing_message_events:
| {
id: number;
selectionStart: number;
selectionEnd: number;
}
| {
id: undefined;
selectionStart: undefined;
selectionEnd: undefined;
} = {
id: undefined,
selectionStart: undefined,