Interface Command

interface Command {
    command: string;
    environments: Environment[];
}

Properties

command: string
environments: Environment[]