| 1 | export type RouteHandler = (req: Request) => Response | Promise<Response>; |
| 2 | |
| 3 | export interface MockServerOptions { |
| 4 | routes: Record<string, RouteHandler>; |
| 5 | } |
| 6 | |
| 7 | export interface MockServer { |
| 8 | url: string; |
nothing calls this directly
no outgoing calls
no test coverage detected