Pending callback request
| 41 | |
| 42 | /** Pending callback request */ |
| 43 | interface PendingRequest { |
| 44 | resolve: (value: CallbackResponse) => void; |
| 45 | reject: (error: Error) => void; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Client for the Dash WebSocket SharedWorker. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…