Interface HonuaPluginDependencyExperimental

Exact dependency identity used for deterministic application-local ordering.

interface HonuaPluginDependency {
    id: string;
    kind?:
        | "realtime"
        | "protocol"
        | "cache"
        | "style"
        | "auth"
        | "renderer"
        | "analysis"
        | "source-format"
        | "geocoder-routing";
    version?: string;
}

Properties

Properties

id: string
kind?:
    | "realtime"
    | "protocol"
    | "cache"
    | "style"
    | "auth"
    | "renderer"
    | "analysis"
    | "source-format"
    | "geocoder-routing"
version?: string