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">
48 lines (47 loc) • 1.16 kB
TypeScript
/** @typedef {typeof __propDef.props} RadioItemProps */
/** @typedef {typeof __propDef.events} RadioItemEvents */
/** @typedef {typeof __propDef.slots} RadioItemSlots */
export default class RadioItem extends SvelteComponentTyped<{
value: any;
name: any;
group: any;
label?: string;
title?: string;
}, {
keydown: KeyboardEvent;
keyup: KeyboardEvent;
keypress: KeyboardEvent;
click: MouseEvent;
change: Event;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type RadioItemProps = typeof __propDef.props;
export type RadioItemEvents = typeof __propDef.events;
export type RadioItemSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
value: any;
name: any;
group: any;
label?: string;
title?: string;
};
events: {
keydown: KeyboardEvent;
keyup: KeyboardEvent;
keypress: KeyboardEvent;
click: MouseEvent;
change: Event;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};