| 2 | import { AxiosRequestConfig } from "axios"; |
| 3 | |
| 4 | interface MockResponse { |
| 5 | status: number; |
| 6 | data: string; |
| 7 | headers?: SessionResponseInterface["headers"] |
| 8 | } |
| 9 | /** |
| 10 | * Mocked Session whose response can be predefined. |
| 11 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected