onerom-wasm
    Preparing search index...

    Interface RomSummary

    A single ROM or plugin entry in a [DeviceSummary].

    interface RomSummary {
        active: boolean;
        index: number | undefined;
        label: string;
    }
    Index
    active: boolean

    Whether this entry's slot is the one currently being served.

    index: number | undefined

    User-facing ROM number (plugins excluded); None for plugins.

    label: string

    Display label: "filename (ROM type)" where the firmware recorded a filename, else the ROM type on its own.

    Plugins carry just their filename or URL: their type is always one of the plugin types, which adds nothing beside a resolved plugin name.