Files
LingChair/client/api/ApiDeclare.ts
CrescentLeaf d5fbc490ea feat: 支持發送文件
* 目前還只能拖拽到輸入框
2025-09-24 21:33:16 +08:00

24 lines
413 B
TypeScript

export type CallMethod =
"User.auth" |
"User.register" |
"User.login" |
"User.setAvatar" |
"User.updateProfile" |
"User.getMyInfo" |
"User.getInfo" |
"User.getMyContacts" |
"User.addContact" |
"User.removeContacts" |
"Chat.getInfo" |
"Chat.sendMessage" |
"Chat.getMessageHistory" |
"Chat.uploadFile"
export type ClientEvent =
"Client.onMessage"