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

Command

import type { Command } from "https://googleapis.deno.dev/v1/workloadmanager:v1.ts";
  • Command specifies the type of command to execute.
interface Command {
agentCommand?: AgentCommand;
shellCommand?: ShellCommand;
}

§Properties

§
agentCommand?: AgentCommand
[src]

AgentCommand specifies a one-time executable program for the agent to run.

§
shellCommand?: ShellCommand
[src]

ShellCommand is invoked via the agent's command line executor.