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

    Interface PluginFlattenedEntry<TOptions, TArgs, TOpts, TGlobal>

    A flattened plugin entry with its realized path.

    interface PluginFlattenedEntry<
        TOptions extends GetDotenvOptions = GetDotenvOptions,
        TArgs extends unknown[] = [],
        TOpts extends OptionValues = {},
        TGlobal extends OptionValues = {},
    > {
        path: string;
        plugin: GetDotenvCliPlugin<TOptions, TArgs, TOpts, TGlobal>;
    }

    Type Parameters

    Index

    Properties

    Properties

    path: string

    The realized mount path for this plugin (root alias excluded), e.g. "aws/whoami".

    The plugin instance for this entry in the flattened tree.