| 25 | } |
| 26 | |
| 27 | interface CurrentRestRequest extends CurrentRequest { |
| 28 | type: 'REST'; |
| 29 | isLoading: boolean; |
| 30 | data: RestRequestData; |
| 31 | } |
| 32 | |
| 33 | interface CurrentWebsocketRequest extends CurrentRequest { |
| 34 | type: 'WS'; |
nothing calls this directly
no outgoing calls
no test coverage detected