Package version:

Interface EnvironmentVariableSetup

The custom setup of setting environment variable.

interface EnvironmentVariableSetup {
    type: "EnvironmentVariableSetup";
    variableName: string;
    variableValue: string;
}

Hierarchy (view full)

Properties

type

Polymorphic discriminator, which specifies the different types this object can be

variableName: string

The name of the environment variable.

variableValue: string

The value of the environment variable.