File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11import * as core from '@actions/core'
22import * as exec from '@actions/exec'
3- import { context as _ghContext , GitHub } from '@actions/github/lib/utils '
3+ import type { context , getOctokit } from '@actions/github'
44import * as glob from '@actions/glob'
55import * as io from '@actions/io'
66
77const AsyncFunction = Object . getPrototypeOf ( async ( ) => null ) . constructor
88
99export declare type AsyncFunctionArguments = {
10- context : typeof _ghContext
10+ context : typeof context
1111 core : typeof core
12- github : InstanceType < typeof GitHub >
13- octokit : InstanceType < typeof GitHub >
12+ github : ReturnType < typeof getOctokit >
13+ octokit : ReturnType < typeof getOctokit >
1414 exec : typeof exec
1515 glob : typeof glob
1616 io : typeof io
You can’t perform that action at this time.
0 commit comments