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

    Interface PluginEntry

    A registered plugin entry stored in the registry map. Normalised form of PluginMetadata (defaults applied at registration).

    interface PluginEntry {
        name: string;
        version: string | null;
        loaded: boolean;
        loadedAt: number;
        requires: string[];
        optional: string[];
        label: string;
        healthCheck: (() => boolean) | null;
    }
    Index

    Properties

    name: string
    version: string | null
    loaded: boolean
    loadedAt: number
    requires: string[]
    optional: string[]
    label: string
    healthCheck: (() => boolean) | null