UNPKG

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">

26 lines (25 loc) 752 B
/** @typedef {typeof __propDef.props} ExtMidiOutProps */ /** @typedef {typeof __propDef.events} ExtMidiOutEvents */ /** @typedef {typeof __propDef.slots} ExtMidiOutSlots */ export default class ExtMidiOut extends SvelteComponentTyped<{ midiMessage: Uint8Array; port?: number; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type ExtMidiOutProps = typeof __propDef.props; export type ExtMidiOutEvents = typeof __propDef.events; export type ExtMidiOutSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { midiMessage: Uint8Array; port?: number | null; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};