Interface CommandProperties

interface CommandProperties {
    args?: string[];
    command: string;
    options?: {
        cwd?: string;
        [key: string]: any;
    };
}

Hierarchy (view full)

Properties

args?: string[]
command: string
options?: {
    cwd?: string;
    [key: string]: any;
}

Type declaration

  • [key: string]: any
  • Optional cwd?: string