@karmaniverous/get-dotenv
    Preparing search index...

    Interface GetDotenvCliCtx<TOptions>

    Per-invocation context shared with plugins and actions.

    interface GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> {
        dotenv: ProcessEnv;
        dotenvProvenance: DotenvProvenance;
        optionsResolved: TOptions;
        pluginConfigs?: Record<string, unknown>;
        plugins?: Record<string, unknown>;
    }

    Type Parameters

    Index

    Properties

    dotenv: ProcessEnv

    Final composed dotenv environment for this invocation.

    dotenvProvenance: DotenvProvenance

    Dotenv provenance history for GetDotenvCliCtx.dotenv.

    Descriptor-only: does not include value payloads.

    optionsResolved: TOptions

    Fully resolved option bag used to compute this context.

    pluginConfigs?: Record<string, unknown>

    Per-plugin validated configuration slices keyed by realized mount path.

    plugins?: Record<string, unknown>

    Optional runtime plugin state bag. Plugins may publish non-sensitive metadata here.