compose_notifications: Convert module to typescript.

This commit is contained in:
evykassirer
2023-12-24 15:52:30 -08:00
committed by Anders Kaseorg
parent 62a636068e
commit 1f21510dd4
4 changed files with 32 additions and 19 deletions

View File

@@ -28,6 +28,8 @@ type MessageList = {
can_mark_messages_read_without_setting: () => boolean;
resume_reading: () => void;
data: MessageListData;
select_id: (message_id: number) => void;
get_row: (message_id: number) => JQuery;
};
export let home: MessageList | undefined;