GeoLeaf Core API - v3.0.0
    Preparing search index...
    UtilsNamespace: typeof Utils & {
        createElement: typeof createElement;
        applyCssText: typeof applyCssText;
        DOMSecurity: typeof DOMSecurity;
        ErrorLogger: typeof ErrorLogger;
        EventListenerManager: typeof EventListenerManager;
        events: typeof events;
        globalEventManager: typeof globalEventManager;
        FetchHelper: typeof FetchHelper;
        FetchError: typeof FetchError;
        PerformanceProfiler: typeof PerformanceProfiler;
        performanceProfiler: ReturnType<typeof getPerformanceProfiler>;
        TimerManager: typeof TimerManager;
        ObjectUtils: {
            getNestedValue: typeof getNestedValue;
            hasNestedPath: typeof hasNestedPath;
            setNestedValue: typeof setNestedValue;
        };
        getNestedValue: typeof getNestedValue;
        hasNestedPath: typeof hasNestedPath;
        setNestedValue: typeof setNestedValue;
        ScaleUtils: {
            calculateMapScale: typeof calculateMapScale;
            isScaleInRange: typeof isScaleInRange;
            clearScaleCache: typeof clearScaleCache;
        };
        wktToGeoJSON: typeof wktToGeoJSON;
        Formatters: {
            formatDateTime: typeof formatDateTime;
            formatFileSize: typeof formatFileSize;
            toMB: typeof toMB;
            toGB: typeof toGB;
        };
        poiToFeature: typeof poiToFeature;
    }

    The full GeoLeaf.Utils surface: the 12 base helpers of general-utils.ts plus the 16 members the kernel mounts on top, and wktToGeoJSON.

    performanceProfiler is typed as a property but is installed as a non-enumerable lazy getter — see the module remarks.