UNPKG

@ng-web-apis/midi

Version:

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

8 lines (7 loc) 273 B
import { type OperatorFunction } from 'rxjs'; /** * Extract value byte (3rd) from MIDI message * * NOTE: Some status messages do not have 3rd byte, use it when you're certain */ export declare function toValueByte(): OperatorFunction<WebMidi.MIDIMessageEvent, number>;