(methodName: string, args: unknown[], done: Function)
| 10 | |
| 11 | export interface SocketIoSequence { |
| 12 | handle(methodName: string, args: unknown[], done: Function): Promise<void>; |
| 13 | } |
| 14 | |
| 15 | export type SocketIoDoneFunction = (response: unknown) => Promise<void>; |
no outgoing calls
no test coverage detected