svelty-material
Version:
Svelte Materialify fork with ts support and updated scss.
28 lines (27 loc) • 862 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string | undefined;
color?: string | undefined;
disabled?: boolean | undefined;
group?: string | number | string[] | undefined;
value?: string | string[] | null | undefined;
id?: string | undefined;
style?: string | undefined;
inputElement?: HTMLInputElement | undefined;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type RadioProps = typeof __propDef.props;
export declare type RadioEvents = typeof __propDef.events;
export declare type RadioSlots = typeof __propDef.slots;
export default class Radio extends SvelteComponentTyped<RadioProps, RadioEvents, RadioSlots> {
}
export {};