onerom-wasm
    Preparing search index...

    Interface WasmPluginLabel

    A plugin's resolved display information, as returned to JavaScript.

    label is always present and displayable: the manifest display name for an official plugin, or the file stem for a local/sideloaded one. official distinguishes the two. version and description are populated only for an official plugin, and only when its release manifest was reachable.

    interface WasmPluginLabel {
        description: string | undefined;
        label: string;
        official: boolean;
        source: string;
        version: string | undefined;
    }
    Index
    description: string | undefined

    Description, for official plugins only (when the manifest was reachable).

    label: string

    Human-readable label (manifest display name, or file stem).

    official: boolean

    Whether this is an official (images.onerom.org manifest) plugin.

    source: string

    The image source the device recorded (echoed back for display).

    version: string | undefined

    Version, for official plugins only.