File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11/// <reference types="node" />
22import * as core from '@actions/core' ;
33import * as exec from '@actions/exec' ;
4- import { Context } from '@actions/github/lib/context' ;
5- import { GitHub } from '@actions/github/lib/utils' ;
4+ import type { context , getOctokit } from '@actions/github' ;
65import * as glob from '@actions/glob' ;
76import * as io from '@actions/io' ;
87export declare type AsyncFunctionArguments = {
9- context : Context ;
8+ context : typeof context ;
109 core : typeof core ;
11- github : InstanceType < typeof GitHub > ;
12- octokit : InstanceType < typeof GitHub > ;
10+ github : ReturnType < typeof getOctokit > ;
11+ octokit : ReturnType < typeof getOctokit > ;
12+ getOctokit : typeof getOctokit ;
1313 exec : typeof exec ;
1414 glob : typeof glob ;
1515 io : typeof io ;
You can’t perform that action at this time.
0 commit comments