@ng-web-apis/midi
Version:
An Observable based library for the use of Web MIDI API with Angular
9 lines (8 loc) • 307 B
TypeScript
/// <reference types="webmidi" />
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>;