Files
LingChair/server/typedef/EventCallbackFunction.ts
2025-09-21 14:06:36 +08:00

10 lines
259 B
TypeScript

import ApiCallbackMessage from "../api/ApiCallbackMessage.ts"
type EventCallbackFunction = (args: { [key: string]: unknown }, clientInfo: {
userId: string
deviceId: string
ip: string
}) => ApiCallbackMessage
export default EventCallbackFunction