UNPKG

sly-svelte-file-tree

Version:

A customizable file tree view component for Svelte

27 lines (26 loc) 765 B
import { SvelteComponent } from "svelte"; import type { SelectedFiles } from "./types"; declare const __propDef: { props: { selectionCount?: number; selectedFiles: SelectedFiles; }; events: { checked: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: { data: SelectedFiles; }; }; exports?: {} | undefined; bindings?: string | undefined; }; export type SelectionBarProps = typeof __propDef.props; export type SelectionBarEvents = typeof __propDef.events; export type SelectionBarSlots = typeof __propDef.slots; export default class SelectionBar extends SvelteComponent<SelectionBarProps, SelectionBarEvents, SelectionBarSlots> { } export {};