UNPKG

@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).

21 lines (20 loc) 580 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { source: any; target: any; title: any; description?: string; key: any; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type CheckboxListProps = typeof __propDef.props; export type CheckboxListEvents = typeof __propDef.events; export type CheckboxListSlots = typeof __propDef.slots; export default class CheckboxList extends SvelteComponent<CheckboxListProps, CheckboxListEvents, CheckboxListSlots> { } export {};