@avanio/variable-util
    Preparing search index...

    Type Alias LoaderValueResult

    Represents the result of loading a configuration value.

    v0.8.0

    type LoaderValueResult = {
        path: string;
        seen: boolean;
        value: string | undefined;
    }
    Index

    Properties

    Properties

    path: string

    The source path from which the value was loaded.

    seen: boolean

    Indicates whether the key and value have already been encountered (used for logging purposes).

    value: string | undefined

    The value associated with the configuration key, or undefined if not found.