Interface EnvironmentVariableMutatorOptions

Options applied to the mutator.

interface EnvironmentVariableMutatorOptions {
    applyAtProcessCreation?: boolean;
    applyAtShellIntegration?: boolean;
}

Properties

applyAtProcessCreation?: boolean

Apply to the environment just before the process is created. Defaults to true

applyAtShellIntegration?: boolean

Apply to the environment in the shell integration script. Note that this will not apply the mutator if shell integration is disabled or not working for some reason. Defaults to false.

Stubbed