| 1 | import { AxiosResponse } from 'axios'; |
| 2 | |
| 3 | interface ApiErrorResponse { |
| 4 | response: { |
| 5 | data: { |
| 6 | error: { |
| 7 | message: string; |
| 8 | }; |
| 9 | }; |
| 10 | }; |
| 11 | } |
| 12 | interface MenuClickEvent { |
| 13 | key: string; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected