Remove node-fetch from type

This commit is contained in:
Josh Gross
2023-11-08 09:54:09 -05:00
parent 5349cf9965
commit 84903f5182

View File

@@ -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;
};