agnostic-svelte
Version:
AgnosticUI (svelte)
50 lines (49 loc) • 1.38 kB
TypeScript
/** @typedef {typeof __propDef.props} PaginationExampleProps */
/** @typedef {typeof __propDef.events} PaginationExampleEvents */
/** @typedef {typeof __propDef.slots} PaginationExampleSlots */
export default class PaginationExample extends SvelteComponentTyped<{
onPageChange: any;
isBordered?: boolean;
ariaLabel?: string;
justify?: string;
current?: number;
isFirstLast?: boolean;
navigationLabels?: {
first: string;
last: string;
previous: string;
next: string;
};
offset?: number;
totalPages?: number;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type PaginationExampleProps = typeof __propDef.props;
export type PaginationExampleEvents = typeof __propDef.events;
export type PaginationExampleSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
onPageChange: any;
isBordered?: boolean;
ariaLabel?: string;
justify?: string;
current?: number;
isFirstLast?: boolean;
navigationLabels?: {
first: string;
last: string;
previous: string;
next: string;
};
offset?: number;
totalPages?: number;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};