mirror of
https://github.com/actions/github-script.git
synced 2026-02-07 19:47:26 +00:00
fix: adjust types
This commit is contained in:
parent
f23cd47e29
commit
632050422e
3 changed files with 3 additions and 0 deletions
1
dist/index.js
vendored
1
dist/index.js
vendored
|
|
@ -36286,6 +36286,7 @@ async function main() {
|
||||||
require: wrapRequire,
|
require: wrapRequire,
|
||||||
__original_require__: require,
|
__original_require__: require,
|
||||||
github,
|
github,
|
||||||
|
octokit: github,
|
||||||
context: lib_github.context,
|
context: lib_github.context,
|
||||||
core: core,
|
core: core,
|
||||||
exec: exec,
|
exec: exec,
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ export declare type AsyncFunctionArguments = {
|
||||||
context: Context
|
context: Context
|
||||||
core: typeof core
|
core: typeof core
|
||||||
github: InstanceType<typeof GitHub>
|
github: InstanceType<typeof GitHub>
|
||||||
|
octokit: InstanceType<typeof GitHub>
|
||||||
exec: typeof exec
|
exec: typeof exec
|
||||||
glob: typeof glob
|
glob: typeof glob
|
||||||
io: typeof io
|
io: typeof io
|
||||||
|
|
|
||||||
1
types/async-function.d.ts
vendored
1
types/async-function.d.ts
vendored
|
|
@ -9,6 +9,7 @@ export declare type AsyncFunctionArguments = {
|
||||||
context: Context;
|
context: Context;
|
||||||
core: typeof core;
|
core: typeof core;
|
||||||
github: InstanceType<typeof GitHub>;
|
github: InstanceType<typeof GitHub>;
|
||||||
|
octokit: InstanceType<typeof GitHub>;
|
||||||
exec: typeof exec;
|
exec: typeof exec;
|
||||||
glob: typeof glob;
|
glob: typeof glob;
|
||||||
io: typeof io;
|
io: typeof io;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue