···34343535## Submitting a Pull Request
36363737-1. Make your changes in a new git branch: `git checkout -b my-fix-branch master`
3737+1. Make your changes in a new git branch: `git checkout -b my-fix-branch main`
38382. Create your patch or feature
39393. Ensure the builds work by running: `npm run build`
40404. Ensure the tests will pass by running: `npm run test`
-1
src/templates/core/node/request.hbs
···11import FormData from 'form-data';
22import fetch, { Headers } from 'node-fetch';
33import type { RequestInit, Response } from 'node-fetch';
44-import type { AbortSignal } from 'node-fetch/externals';
5465import { ApiError } from './ApiError';
76import type { ApiRequestOptions } from './ApiRequestOptions';