From 84903f51828821af5d03d3884c6ba699a2d44d6e Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Wed, 8 Nov 2023 09:54:09 -0500 Subject: [PATCH] Remove `node-fetch` from type --- types/async-function.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/types/async-function.d.ts b/types/async-function.d.ts index b4d6a8e8..910a6249 100644 --- a/types/async-function.d.ts +++ b/types/async-function.d.ts @@ -5,7 +5,6 @@ import { Context } from '@actions/github/lib/context'; import { GitHub } from '@actions/github/lib/utils'; import * as glob from '@actions/glob'; import * as io from '@actions/io'; -import fetch from 'node-fetch'; export declare type AsyncFunctionArguments = { context: Context; core: typeof core; @@ -13,7 +12,6 @@ export declare type AsyncFunctionArguments = { exec: typeof exec; glob: typeof glob; io: typeof io; - fetch: typeof fetch; require: NodeRequire; __original_require__: NodeRequire; };