This commit is contained in:
Patricio Pérez 2026-01-26 14:42:17 -05:00 committed by GitHub
commit edce7b26ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 2701 additions and 2 deletions

View file

@ -4,6 +4,7 @@ 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 * as tc from '@actions/tool-cache'
const AsyncFunction = Object.getPrototypeOf(async () => null).constructor
@ -15,6 +16,7 @@ export declare type AsyncFunctionArguments = {
exec: typeof exec
glob: typeof glob
io: typeof io
tc: typeof tc
require: NodeRequire
__original_require__: NodeRequire
}