Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ShellCommand

import type { ShellCommand } from "https://googleapis.deno.dev/v1/workloadmanager:v1.ts";
  • A ShellCommand is invoked via the agent's command line executor
interface ShellCommand {
args?: string;
command?: string;
timeoutSeconds?: number;
}

§Properties

§
args?: string
[src]

args is a string of arguments to be passed to the command.

§
command?: string
[src]

command is the name of the command to be executed.

§
timeoutSeconds?: number
[src]

Optional. If not specified, the default timeout is 60 seconds.