UNPKG

@ng-web-apis/midi

Version:

An Observable based library for the use of Web MIDI API with Angular

9 lines (8 loc) 305 B
/// <reference types="webmidi" /> import type { OperatorFunction } from 'rxjs'; /** * Extract data byte (2nd) from MIDI message * * NOTE: Some status messages do not have 2nd byte, use it when you're certain */ export declare function toDataByte(): OperatorFunction<WebMidi.MIDIMessageEvent, number>;