UNPKG

@bexis2/bexis2-core-ui

Version:

Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).

20 lines (19 loc) 581 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { itemCount: any; pageConfig: any; pageSizes: any; id: any; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type TablePaginationProps = typeof __propDef.props; export type TablePaginationEvents = typeof __propDef.events; export type TablePaginationSlots = typeof __propDef.slots; export default class TablePagination extends SvelteComponent<TablePaginationProps, TablePaginationEvents, TablePaginationSlots> { } export {};