UNPKG

sly-svelte-file-tree

Version:

A customizable file tree view component for Svelte

30 lines (29 loc) 824 B
/** @typedef {typeof __propDef.props} CheckboxProps */ /** @typedef {typeof __propDef.events} CheckboxEvents */ /** @typedef {typeof __propDef.slots} CheckboxSlots */ export default class Checkbox extends SvelteComponent<{ checked?: boolean | undefined; }, { checked: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, {}> { } export type CheckboxProps = typeof __propDef.props; export type CheckboxEvents = typeof __propDef.events; export type CheckboxSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { checked?: boolean | undefined; }; events: { checked: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; exports?: undefined; bindings?: undefined; }; export {};