@tialro2/rnbokit
Version:
<img width="493" alt="Screenshot 2023-11-24 at 15 43 41" src="static/sreenshot.jpeg">
28 lines (27 loc) • 762 B
TypeScript
export default RNBOMidiOut;
type RNBOMidiOut = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<Props & {
[key: string]: any;
}>): void;
};
declare const RNBOMidiOut: import("svelte").Component<{
/**
* - type {number} - the MIDI port index
*/
port?: number;
device: import("@rnbo/js").Device;
midiMessage?: import("@rnbo/js").MIDIData | undefined;
children?: import("svelte").Snippet<[any]>;
} & {
[key: string]: any;
}, {}, "">;
type Props = {
/**
* - type {number} - the MIDI port index
*/
port?: number;
device: import("@rnbo/js").Device;
midiMessage?: import("@rnbo/js").MIDIData | undefined;
children?: import("svelte").Snippet<[any]>;
};