@tialro2/rnbokit
Version:
<img width="493" alt="Screenshot 2023-11-24 at 15 43 41" src="static/sreenshot.jpeg">
22 lines (21 loc) • 497 B
TypeScript
export default RadioItem;
type RadioItem = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<Props>): void;
};
declare const RadioItem: import("svelte").Component<{
group: any;
name: any;
value: any;
title?: string;
label?: string;
children?: import("svelte").Snippet;
}, {}, "group">;
type Props = {
group: any;
name: any;
value: any;
title?: string;
label?: string;
children?: import("svelte").Snippet;
};