svelte-table-pagination
Version:
Svelte component to create and manage table and pagination.
15 lines (14 loc) • 543 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: Record<string, never>;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DemoTablePaginationProps = typeof __propDef.props;
export type DemoTablePaginationEvents = typeof __propDef.events;
export type DemoTablePaginationSlots = typeof __propDef.slots;
export default class DemoTablePagination extends SvelteComponentTyped<DemoTablePaginationProps, DemoTablePaginationEvents, DemoTablePaginationSlots> {
}
export {};