update typescript return

This commit is contained in:
Reinaldo Neto 2023-01-20 17:18:43 -03:00
parent bd591434ed
commit a2f1205259
1 changed files with 1 additions and 0 deletions

View File

@ -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': {