Node TAP
    Preparing search index...

    Type Alias PrintedProcessInfoNode

    A ProcessInfoNode, as printed to the repl output.

    type PrintedProcessInfoNode = {
        args: string[];
        children?: { [k: string]: PrintedProcessInfoNode };
        code?: number;
        command: string;
        cwd: string;
        date: string;
        parent?: string;
        pid: number;
        ppid: number;
        runtime?: number;
        signal?: NodeJS.Signals;
    }
    Index

    Properties

    args: string[]
    children?: { [k: string]: PrintedProcessInfoNode }
    code?: number
    command: string
    cwd: string
    date: string
    parent?: string
    pid: number
    ppid: number
    runtime?: number
    signal?: NodeJS.Signals