From 3b86850d37ab06c169e153354969cd9a010e3250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micael=20Gon=C3=A7alves?= Date: Mon, 24 Mar 2025 22:20:36 -0300 Subject: [PATCH] importing fetch function and Response class --- src/github/common/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/github/common/utils.ts b/src/github/common/utils.ts index e85691a0be..3894653e18 100644 --- a/src/github/common/utils.ts +++ b/src/github/common/utils.ts @@ -1,6 +1,7 @@ import { getUserAgent } from "universal-user-agent"; import { createGitHubError } from "./errors.js"; import { VERSION } from "./version.js"; +import fetch, { Response } from "node-fetch"; type RequestOptions = { method?: string;