chore: declare User.getMyRecentChats

This commit is contained in:
CrescentLeaf
2025-10-04 14:11:35 +08:00
parent 39b4a6d8a6
commit a1eddf813d
2 changed files with 8 additions and 4 deletions

View File

@@ -13,17 +13,19 @@ export type CallMethod =
"User.addContact" |
"User.removeContacts" |
"User.getMyRecentChats" |
"Chat.getInfo" |
"Chat.sendMessage" |
"Chat.getMessageHistory" |
"Chat.uploadFile"
export type ClientEvent =
"Client.onMessage"
export const CallableMethodBeforeAuth = [
"User.auth",
"User.register",
"User.login",
]
export type ClientEvent =
"Client.onMessage"
]