Interface MIDIOutputMap

    interface MIDIOutputMap {
        forEach(
            callbackfn: (
                value: MIDIOutput,
                key: string,
                parent: MIDIOutputMap,
            ) => void,
            thisArg?: any,
        ): void;
    }

    Methods

    Methods

    • Parameters

      Returns void