svelte-table-pagination
Version:
Svelte component to create and manage table and pagination.
18 lines (17 loc) • 528 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
selectedPage: number;
allPagesLength: number;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type PaginationProps = typeof __propDef.props;
export type PaginationEvents = typeof __propDef.events;
export type PaginationSlots = typeof __propDef.slots;
export default class Pagination extends SvelteComponentTyped<PaginationProps, PaginationEvents, PaginationSlots> {
}
export {};