UNPKG

@project-jade-garden/bits-ui

Version:
25 lines (24 loc) 769 B
import { SVATraits } from 'jade-garden'; /** * **Pagination** * @description Facilitates navigation between pages. * @see [source](https://www.bits-ui.com/docs/components/pagination#api-reference) */ export declare const slots: readonly ["root", "prevButton", "nextButton", "page"]; /** * **Pagination** * @description Facilitates navigation between pages. * @see [source](https://www.bits-ui.com/docs/components/pagination#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Pagination** * @description Facilitates navigation between pages. * @see [source](https://www.bits-ui.com/docs/components/pagination#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; prevButton: {}; nextButton: {}; page: {}; }>;