UNPKG

@tialro/rnbokit

Version:

<img width="493" alt="Screenshot 2023-11-24 at 15 43 41" src="static/sreenshot.jpeg">

18 lines (17 loc) 422 B
export default XyMidiIn; type XyMidiIn = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial<Props & { [key: string]: any; }>): void; }; declare const XyMidiIn: import("svelte").Component<{ midiChannel?: number; midiMessage: Uint8Array; } & { [key: string]: any; }, {}, "midiMessage">; type Props = { midiChannel?: number; midiMessage: Uint8Array; };