UNPKG

@tialro2/rnbokit

Version:

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

14 lines (13 loc) 366 B
export default ExtMidiIn; type ExtMidiIn = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial<Props>): void; }; declare const ExtMidiIn: import("svelte").Component<{ port?: number | null; midiMessage: Uint8Array; }, {}, "midiMessage" | "port">; type Props = { port?: number | null; midiMessage: Uint8Array; };