| 1 | export type SendRequestCallback<TResponse> = (requestId: string) => Promise<TResponse>; |
| 2 | |
| 3 | export interface InsomniaOptions<TResponse> { |
| 4 | sendRequest: SendRequestCallback<TResponse>; |
| 5 | bail?: boolean; |
| 6 | keepFile?: boolean; |
| 7 | testFilter?: string; |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * An instance of Insomnia will be exposed as a global variable during |
nothing calls this directly
no outgoing calls
no test coverage detected