GeoLeaf Core API - v3.0.0
    Preparing search index...

    Minimal interface for the Config module accessed by profile loaders.

    interface ConfigModule {
        getActiveProfile: () => unknown;
        get: (key: string) => unknown;
        getActiveProfileMapping?: () => Record<string, unknown> | null;
        Profile?: { getActiveProfileLayersConfig: () => unknown[] | null };
    }
    Index

    Properties

    getActiveProfile: () => unknown
    get: (key: string) => unknown
    getActiveProfileMapping?: () => Record<string, unknown> | null

    Active profile's mapping.json config (named per-source blocks), or null.

    Profile?: { getActiveProfileLayersConfig: () => unknown[] | null }