UNPKG

sly-svelte-file-tree

Version:

A customizable file tree view component for Svelte

25 lines (24 loc) 697 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { property?: string; defaultWidth?: number; isSizeMeasured?: boolean; }; events: { 'end-measure': CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; exports?: {} | undefined; bindings?: string | undefined; }; export type SizeWatcherProps = typeof __propDef.props; export type SizeWatcherEvents = typeof __propDef.events; export type SizeWatcherSlots = typeof __propDef.slots; export default class SizeWatcher extends SvelteComponent<SizeWatcherProps, SizeWatcherEvents, SizeWatcherSlots> { } export {};