UNPKG

@boxyhq/svelte-ui

Version:

Svelte UI components from BoxyHQ

27 lines (26 loc) 1.05 kB
import { SvelteComponentTyped } from "svelte"; import type { ConnectionListProps } from "../types"; declare const __propDef: { props: { urls: ConnectionListProps["urls"]; paginate?: ConnectionListProps["paginate"]; cols?: ConnectionListProps["cols"]; handleActionClick: ConnectionListProps["handleActionClick"]; tenant?: ConnectionListProps["tenant"]; product?: ConnectionListProps["product"]; displaySorted?: ConnectionListProps["displaySorted"]; errorCallback?: ConnectionListProps["errorCallback"]; handleListFetchComplete?: ConnectionListProps["handleListFetchComplete"]; tableProps?: ConnectionListProps["tableProps"]; }; 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 {};