File size: 939 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import { SvelteComponent } from "svelte";
import type { Props } from "../types.js";
declare const __propDef: {
props: Props;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
builder: {
'data-scope': string;
} & {
[x: `data-melt-${string}`]: "";
} & {
action: import("svelte/action").Action<any, any, Record<never, any>>;
};
pages: import("@melt-ui/svelte/index.js").PageItem[];
range: {
start: number;
end: number;
};
};
};
};
export type PaginationProps = typeof __propDef.props;
export type PaginationEvents = typeof __propDef.events;
export type PaginationSlots = typeof __propDef.slots;
export default class Pagination extends SvelteComponent<PaginationProps, PaginationEvents, PaginationSlots> {
}
export {};
|