Interface EnvironmentVariableMutator

A type of mutation and its value to be applied to an environment variable.

interface EnvironmentVariableMutator {
    options: EnvironmentVariableMutatorOptions;
    type: EnvironmentVariableMutatorType;
    value: string;
}

Properties

Properties

Options applied to the mutator.

The type of mutation that will occur to the variable.

value: string

The value to use for the variable.