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) • 739 B
TypeScript
/** @typedef {typeof __propDef.props} RadioGroupProps */
/** @typedef {typeof __propDef.events} RadioGroupEvents */
/** @typedef {typeof __propDef.slots} RadioGroupSlots */
export default class RadioGroup extends SvelteComponentTyped<{
labelledby?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type RadioGroupProps = typeof __propDef.props;
export type RadioGroupEvents = typeof __propDef.events;
export type RadioGroupSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
labelledby?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};