Chartbreaker
    Preparing search index...

    Interface MIDIInputMap

    The MIDIInputMap read-only interface of the Web MIDI API provides the set of MIDI input ports that are currently available. Available only in secure contexts.

    MDN Reference

    interface MIDIInputMap {
        size: number;
        "[iterator]"(): MapIterator<[string, MIDIInput]>;
        entries(): MapIterator<[string, MIDIInput]>;
        forEach(
            callbackfn: (
                value: MIDIInput,
                key: string,
                parent: MIDIInputMap,
            ) => void,
            thisArg?: any,
        ): void;
        get(key: string): MIDIInput | undefined;
        has(key: string): boolean;
        keys(): MapIterator<string>;
        values(): MapIterator<MIDIInput>;
    }

    Hierarchy

    Index

    Properties

    size: number

    Methods

    • Parameters

      Returns void

    • Parameters

      • key: string

      Returns boolean