Skip to main content
Module

x/task_runner_v2/src/interfaces.ts

Version 2 of deno-task-runner to fix issues
Latest
File
interface ResolveContext { checked: Set<string>|Set<unknown>;}export { ResolveContext }
interface RunContext { cwd: string; shell: boolean; resources: Set<Deno.Closer>|Set<unknown>;}export { RunContext }
interface Command { resolveRef(tasks: Tasks, context: ResolveContext): Command; run(args: string[], context: RunContext): Promise<void>;}export { Command }
type Tasks = { [name: string]: Command };export { Tasks }
interface RunOptions { cwd?: string; shell?: boolean;}export { RunOptions }