feat(wip): 進一步完善 UserAPI 和基類函數

This commit is contained in:
CrescentLeaf
2025-09-06 14:34:14 +08:00
parent adbe6b193b
commit e50a90a770
3 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import ApiCallbackMessage from "../api/ApiCallbackMessage.ts"
type EventCallbackFunction = (args: {}) => ApiCallbackMessage
type EventCallbackFunction = (args: { [key: string]: unknown }) => ApiCallbackMessage
export default EventCallbackFunction