UNPKG

@tialro2/rnbokit

Version:

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

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