Fix check for universal timer notification

This commit is contained in:
Fedor Indutny
2021-06-02 13:55:10 -07:00
committed by GitHub
parent 0f4a1d6e28
commit a6ce00ff37
4 changed files with 49 additions and 3 deletions

View File

@@ -215,6 +215,7 @@ export type DataInterface = {
) => Promise<Array<ConversationType>>;
getMessageCount: (conversationId?: string) => Promise<number>;
hasUserInitiatedMessages: (conversationId: string) => Promise<boolean>;
saveMessages: (
arrayOfMessages: Array<MessageType>,
options: { forceSave?: boolean }