Interface CommandLineOptions

interface CommandLineOptions {
    args: string[];
    cwd: string;
    env?: {
        [key: string]: string | null;
    };
}

Properties

Properties

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

Type declaration

  • [key: string]: string | null