@tialro2/rnbokit
Version:
<img width="493" alt="Screenshot 2023-11-24 at 15 43 41" src="static/sreenshot.jpeg">
18 lines (17 loc) • 422 B
TypeScript
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;
};