getTotalUnreadForConversation: Add missing isGroup parameter
This commit is contained in:
parent
5d65e3b36c
commit
25282e3afa
5 changed files with 43 additions and 13 deletions
|
@ -384,7 +384,10 @@ export type DataInterface = {
|
|||
removeMessages: (ids: Array<string>) => Promise<void>;
|
||||
getTotalUnreadForConversation: (
|
||||
conversationId: string,
|
||||
storyId?: UUIDStringType
|
||||
options: {
|
||||
storyId: UUIDStringType | undefined;
|
||||
isGroup: boolean;
|
||||
}
|
||||
) => Promise<number>;
|
||||
getUnreadByConversationAndMarkRead: (options: {
|
||||
conversationId: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue