rnbokit
Version:
<img width="491" alt="Screenshot 2023-06-26 at 22 29 43" src="https://github.com/SanderNotenbaert/RNBOKit/assets/34664737/5c54599e-fb9f-4131-a28a-ba4993f2f064">
28 lines (27 loc) • 814 B
TypeScript
/** @typedef {typeof __propDef.props} AudioDropInProps */
/** @typedef {typeof __propDef.events} AudioDropInEvents */
/** @typedef {typeof __propDef.slots} AudioDropInSlots */
export default class AudioDropIn extends SvelteComponentTyped<{
[x: string]: any;
context: AudioContext;
audio: AudioNode;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type AudioDropInProps = typeof __propDef.props;
export type AudioDropInEvents = typeof __propDef.events;
export type AudioDropInSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
context: AudioContext;
audio: AudioNode | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};