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

ExitInfo

import type { ExitInfo } from "https://googleapis.deno.dev/v1/composer:v1.ts";

Information about how a command ended.

interface ExitInfo {
error?: string;
exitCode?: number;
}

§Properties

§
error?: string
[src]

Error message. Empty if there was no error.

§
exitCode?: number
[src]

The exit code from the command execution.