Interface IShellTerminalServerOptions

interface IShellTerminalServerOptions {
    args?: string | string[];
    cols?: number;
    env?: {
        [key: string]: string | null;
    };
    isPseudo?: boolean;
    rootURI?: string;
    rows?: number;
    shell?: string;
    strictEnv?: boolean;
}

Hierarchy (view full)

Properties

args?: string | string[]
cols?: number
env?: {
    [key: string]: string | null;
}

Type declaration

  • [key: string]: string | null
isPseudo?: boolean
rootURI?: string
rows?: number
shell?: string
strictEnv?: boolean