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

    What the sync report exposes for one layer.

    interface LayerSyncReport {
        layerId: string;
        status: LayerOfflineStatus;
        featureCount: number;
        pendingCount: number;
        quarantinedCount: number;
        lastPullAt: number | null;
    }
    Index

    Properties

    layerId: string
    featureCount: number
    pendingCount: number

    Entries still owed to the server.

    quarantinedCount: number
    lastPullAt: number | null

    Last successful pull, milliseconds since epoch; null if never.