@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
33 lines (32 loc) • 1.22 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
type NonPaginatedTableProps = {
cols: TableProps["cols"];
data: TableProps["data"];
actions: TableProps["actions"];
tableProps?: Pick<TableProps, "tableCaption" | "classNames">;
showErrorComponent: boolean;
errorMessage: string;
emptyStateMessage: string;
};
import { TableProps } from "../types";
declare const __propDef: {
props: {
data: NonPaginatedTableProps["data"];
showErrorComponent: NonPaginatedTableProps["showErrorComponent"];
errorMessage: NonPaginatedTableProps["errorMessage"];
emptyStateMessage: NonPaginatedTableProps["emptyStateMessage"];
cols: NonPaginatedTableProps["cols"];
actions: NonPaginatedTableProps["actions"];
tableProps?: NonPaginatedTableProps["tableProps"];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type NonPaginatedProps = typeof __propDef.props;
export type NonPaginatedEvents = typeof __propDef.events;
export type NonPaginatedSlots = typeof __propDef.slots;
export default class NonPaginated extends SvelteComponentTyped<NonPaginatedProps, NonPaginatedEvents, NonPaginatedSlots> {
}
export {};