Graduation
/
ui
/node_modules
/bits-ui
/dist
/bits
/pagination
/components
/pagination-prev-button.svelte.d.ts
import { SvelteComponent } from "svelte"; | |
import type { PrevButtonProps } from "../types.js"; | |
declare const __propDef: { | |
props: PrevButtonProps; | |
slots: { | |
default: { | |
builder: { | |
readonly 'aria-label': "Previous"; | |
readonly disabled: boolean; | |
} & { | |
[x: `data-melt-${string}`]: ""; | |
} & { | |
action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"keydown" | "click">; | |
}; | |
}; | |
}; | |
events: { | |
click: import("../../../index.js").CustomEventHandler<MouseEvent, HTMLDivElement>; | |
}; | |
}; | |
export type PaginationPrevButtonProps = typeof __propDef.props; | |
export type PaginationPrevButtonEvents = typeof __propDef.events; | |
export type PaginationPrevButtonSlots = typeof __propDef.slots; | |
export default class PaginationPrevButton extends SvelteComponent<PaginationPrevButtonProps, PaginationPrevButtonEvents, PaginationPrevButtonSlots> { | |
} | |
export {}; | |