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

    Interface PluginChildEntry<TOptions, TArgs, TOpts, TGlobal>

    An entry in the plugin children array.

    interface PluginChildEntry<
        TOptions extends GetDotenvOptions = GetDotenvOptions,
        TArgs extends unknown[] = [],
        TOpts extends OptionValues = {},
        TGlobal extends OptionValues = {},
    > {
        override: PluginNamespaceOverride | undefined;
        plugin: GetDotenvCliPlugin<TOptions, TArgs, TOpts, TGlobal>;
    }

    Type Parameters

    Index

    Properties

    Properties

    override: PluginNamespaceOverride | undefined

    Optional namespace override for the child when mounted under the parent. When provided, this name is used instead of the child's default ns.

    The child plugin instance to mount under this parent.