UNPKG

@ng-web-apis/midi

Version:

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

9 lines (8 loc) 291 B
/// <reference types="webmidi" /> import type { MonoTypeOperatorFunction } from 'rxjs'; /** * Filter MIDI messages to notes only * * IMPORTANT: It normalizes noteOff events to noteOn with 0 velocity */ export declare function notes(): MonoTypeOperatorFunction<WebMidi.MIDIMessageEvent>;