agentOS API Reference - v0.2.0-rc.3
    Preparing search index...

    Interface SpawnedProcessInfo

    Info about a process spawned via spawn.

    interface SpawnedProcessInfo {
        args: string[];
        command: string;
        exitCode: number | null;
        pid: number;
        running: boolean;
    }
    Index

    Properties

    args: string[]
    command: string
    exitCode: number | null
    pid: number
    running: boolean