* @link https://fetch.spec.whatwg.org/#body-mixin
| 237 | * @link https://fetch.spec.whatwg.org/#body-mixin |
| 238 | */ |
| 239 | interface BodyMixin { |
| 240 | readonly body?: never; |
| 241 | readonly bodyUsed: boolean; |
| 242 | arrayBuffer(): Promise<ArrayBuffer>; |
| 243 | blob(): Promise<Blob>; |
| 244 | bytes(): Promise<Uint8Array>; |
| 245 | formData(): Promise<never>; |
| 246 | json(): Promise<unknown>; |
| 247 | text(): Promise<string>; |
| 248 | } |
| 249 | |
| 250 | export interface DispatchInterceptor { |
| 251 | (dispatch: Dispatch): Dispatch |
no outgoing calls
no test coverage detected
searching dependent graphs…