Spaces:
Paused
Paused
File size: 714 Bytes
9ada4bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
import type { InteractiveRequest } from './utils/toInteractiveRequest'
export const IS_PATCHED_MODULE: unique symbol = Symbol('isPatchedModule')
export type RequestCredentials = 'omit' | 'include' | 'same-origin'
export type HttpRequestEventMap = {
request: [
args: {
request: InteractiveRequest
requestId: string
}
]
response: [
args: {
response: Response
isMockedResponse: boolean
request: Request
requestId: string
}
]
unhandledException: [
args: {
error: unknown
request: Request
requestId: string
controller: {
respondWith(response: Response): void
errorWith(error?: Error): void
}
}
]
}
|