@salesforce/core
    Preparing search index...

    Type Alias ConfigInfo

    Information about a config property.

    type ConfigInfo = {
        deprecated?: boolean;
        isEnvVar: () => boolean;
        isGlobal: () => boolean;
        isLocal: () => boolean;
        key: string;
        location?: Location;
        path?: string;
        value?: AnyJson;
    }
    Index
    deprecated?: boolean

    True if the config property is deprecated.

    isEnvVar: () => boolean

    true if the config property is an environment variable.

    isGlobal: () => boolean

    true if the config property is in the global space.

    isLocal: () => boolean

    true if the config property is in the local project.

    key: string

    key The config key.

    location?: Location

    The location of the config property.

    path?: string

    The path of the config value.

    value?: AnyJson

    The config value.