mirror of
https://github.com/actions/github-script.git
synced 2026-04-07 22:50:04 +00:00
Add the @actions/tool-cache package
Signed-off-by: Patricio Pérez <73832292+patricioperezv@users.noreply.github.com>
This commit is contained in:
parent
60a0d83039
commit
5376815923
7 changed files with 2701 additions and 2 deletions
2
types/async-function.d.ts
vendored
2
types/async-function.d.ts
vendored
|
|
@ -5,6 +5,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';
|
||||
export declare type AsyncFunctionArguments = {
|
||||
context: Context;
|
||||
core: typeof core;
|
||||
|
|
@ -12,6 +13,7 @@ export declare type AsyncFunctionArguments = {
|
|||
exec: typeof exec;
|
||||
glob: typeof glob;
|
||||
io: typeof io;
|
||||
tc: typeof tc;
|
||||
require: NodeRequire;
|
||||
__original_require__: NodeRequire;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue