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

23 lines (22 loc) 642 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { id: any; source: any; target: any; title: any; description?: string; key: any; help?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type CheckboxKvPListProps = typeof __propDef.props; export type CheckboxKvPListEvents = typeof __propDef.events; export type CheckboxKvPListSlots = typeof __propDef.slots; export default class CheckboxKvPList extends SvelteComponent<CheckboxKvPListProps, CheckboxKvPListEvents, CheckboxKvPListSlots> { } export {};