UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

22 lines (21 loc) 670 B
import { SvelteComponentTyped } from "svelte"; import type paginationStore from '../stores/paginationStore'; declare const __propDef: { props: { [x: string]: any; pagination: ReturnType<typeof paginationStore>; hideSinglePage?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: { actions: {}; }; }; 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 {};