flowbite-svelte
Version:
Flowbite components for Svelte
20 lines (19 loc) • 546 B
TypeScript
import type { PaginationProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [PaginationProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1296)
* ## Props
* @prop pages = []
* @prop previous
* @prop next
* @prop prevContent
* @prop nextContent
* @prop table
* @prop size
* @prop ariaLabel
* @prop ...restProps
*/
declare const Pagination: import("svelte").Component<PaginationProps, {}, "">;
type Pagination = ReturnType<typeof Pagination>;
export default Pagination;