UNPKG

@tialro2/rnbokit

Version:

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

18 lines (17 loc) 437 B
export default AudioDropIn; type AudioDropIn = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial<Props & { [key: string]: any; }>): void; }; declare const AudioDropIn: import("svelte").Component<{ context: AudioContext; audio: AudioNode | undefined; } & { [key: string]: any; }, {}, "audio">; type Props = { context: AudioContext; audio: AudioNode | undefined; };