(onSuccess: () => void, onError: (error: any) => void)
| 1 | interface Server{ |
| 2 | stop(onSuccess: () => void, onError: (error: any) => void): void; |
| 3 | send(id: string, data: any, onSuccess: () => void, onError: (error: any) => void): void; |
| 4 | port: number; |
| 5 | } |
no outgoing calls
no test coverage detected