svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
22 lines (21 loc) • 706 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type paginationStore from '../stores/paginationStore';
declare const __propDef: {
props: {
[x: string]: any;
pagination: ReturnType<typeof paginationStore>;
perPageOptions?: number[];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
actions: {};
};
};
export type TablePaginationProps = typeof __propDef.props;
export type TablePaginationEvents = typeof __propDef.events;
export type TablePaginationSlots = typeof __propDef.slots;
export default class TablePagination extends SvelteComponentTyped<TablePaginationProps, TablePaginationEvents, TablePaginationSlots> {
}
export {};