diff --git a/app/definitions/rest/v1/chat.ts b/app/definitions/rest/v1/chat.ts index 16f568756..4a15a5619 100644 --- a/app/definitions/rest/v1/chat.ts +++ b/app/definitions/rest/v1/chat.ts @@ -33,6 +33,7 @@ export type ChatEndpoints = { GET: (params: { roomId: IServerRoom['_id']; text?: string; offset: number; count: number }) => { messages: IMessageFromServer[]; total: number; + count: number; }; }; 'chat.getThreadsList': {