UNPKG

sveltestrap

Version:
18 lines (15 loc) 420 B
import { SvelteComponentTyped } from 'svelte'; export interface PaginationLinkProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap['a']> { arialabel?: string; first?: boolean; href?: string; last?: boolean; next?: boolean; previous?: boolean; } export default class PaginationLink extends SvelteComponentTyped< PaginationLinkProps, { click: WindowEventMap['click'] }, { default: {} } > {}