The types include this definition: ```ts // Truncated for brevity export interface FetchMock { (input?: string | Request, init?: RequestInit): Promise<Response>; } ``` but [in the spec](https://fetch.spec.whatwg.org/#fetch-method), `input` cannot be undefined. In Chrome, `fetch()` (invoked without arguments) produces a `TypeError`: ``` Failed to execute 'fetch' on 'Window': 1 argument required, but only 0 present. ```