svelte-table-pagination
Version:
Svelte component to create and manage table and pagination.
17 lines (16 loc) • 498 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
entries: number;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ShowEntriesProps = typeof __propDef.props;
export type ShowEntriesEvents = typeof __propDef.events;
export type ShowEntriesSlots = typeof __propDef.slots;
export default class ShowEntries extends SvelteComponentTyped<ShowEntriesProps, ShowEntriesEvents, ShowEntriesSlots> {
}
export {};