Interface KernelDeviceCLIOptions

Options passed to device CLI handlers

interface KernelDeviceCLIOptions {
    args: string[];
    kernel: Kernel;
    pid: number;
    shell: Shell;
    terminal: Terminal;
}

Properties

args: string[]

Command line arguments

kernel: Kernel

Kernel instance

pid: number

Process ID of the CLI instance

shell: Shell

Shell instance

terminal: Terminal

Terminal instance