@tialro2/rnbokit
Version:
<img width="493" alt="Screenshot 2023-11-24 at 15 43 41" src="static/sreenshot.jpeg">
22 lines (21 loc) • 550 B
TypeScript
export default RNBOOutport;
type RNBOOutport = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<Props & {
[key: string]: any;
}>): void;
};
declare const RNBOOutport: import("svelte").Component<{
outport: import("@rnbo/js").MessageInfo;
device: import("@rnbo/js").Device;
min?: number;
max?: number;
} & {
[key: string]: any;
}, {}, "">;
type Props = {
outport: import("@rnbo/js").MessageInfo;
device: import("@rnbo/js").Device;
min?: number;
max?: number;
};