Graduation / ui /node_modules /bits-ui /dist /bits /pagination /components /pagination-prev-button.svelte.d.ts
DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
1.02 kB
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 {};