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