( done: () => void, sio: Server, ...clientSockets: ClientSocket[] )
| 56 | } |
| 57 | |
| 58 | export function successFn( |
| 59 | done: () => void, |
| 60 | sio: Server, |
| 61 | ...clientSockets: ClientSocket[] |
| 62 | ) { |
| 63 | return () => success(done, sio, ...clientSockets); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Asserts a condition so that typescript will recognize the assertion! |
no test coverage detected