UNPKG

@boxyhq/svelte-ui

Version:

Svelte UI components from BoxyHQ

27 lines (26 loc) 1.04 kB
import { SvelteComponentTyped } from "svelte"; import type { DirectoryListProps } from "../types"; declare const __propDef: { props: { urls: DirectoryListProps["urls"]; paginate?: DirectoryListProps["paginate"]; hideViewAction?: DirectoryListProps["hideViewAction"]; handleActionClick: DirectoryListProps["handleActionClick"]; cols?: DirectoryListProps["cols"]; tenant?: DirectoryListProps["tenant"]; product?: DirectoryListProps["product"]; tableProps?: DirectoryListProps["tableProps"]; errorCallback?: DirectoryListProps["errorCallback"]; handleListFetchComplete?: DirectoryListProps["handleListFetchComplete"]; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type IndexProps = typeof __propDef.props; export type IndexEvents = typeof __propDef.events; export type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> { } export {};