Remobved unused import from node-fetch example

This commit is contained in:
Ferdi Koomen 2022-04-06 22:33:49 +02:00
parent 28415a82d9
commit 99bd25a3fd
2 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
- Return `undefined` to match `noImplicitReturns` rule
- Made `BaseHttpRequest` class abstract
- Removed private fields using `#` inside `CancelablePromise`
- Removed unneeded import `AbortController` from `node-fetch` client
- Filter out wrong enum values
## [0.20.1] - 2022-02-25

View File

@ -1,8 +1,7 @@
{{>header}}
import { AbortController } from 'abort-controller';
import FormData from 'form-data';
import fetch, { BodyInit, Headers, RequestInit, Response } from 'node-fetch';
import fetch, { Headers, RequestInit, Response } from 'node-fetch';
import { ApiError } from './ApiError';
import type { ApiRequestOptions } from './ApiRequestOptions';