@bexis2/bexis2-core-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
26 lines (25 loc) • 668 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
id?: string;
label?: string;
checked?: boolean;
valid: boolean;
invalid: boolean;
required: boolean;
feedback: [];
};
events: {
input: Event;
change: Event;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type CheckboxProps = typeof __propDef.props;
export type CheckboxEvents = typeof __propDef.events;
export type CheckboxSlots = typeof __propDef.slots;
export default class Checkbox extends SvelteComponent<CheckboxProps, CheckboxEvents, CheckboxSlots> {
}
export {};