Include @actions/io

This commit is contained in:
Jason Macgowan
2020-05-18 15:56:00 -04:00
parent 048309c447
commit b2c461f3a2
6 changed files with 517 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import * as core from '@actions/core'
import {GitHub} from '@actions/github'
import {Context} from '@actions/github/lib/context'
import * as io from '@actions/io'
const AsyncFunction = Object.getPrototypeOf(async () => null).constructor
@@ -8,6 +9,7 @@ type AsyncFunctionArguments = {
context: Context
core: typeof core
github: GitHub
io: typeof io
require: NodeRequire
}