@opencloud-eu/design-system
Version:
OpenCloud Design System is used to design OpenCloud UI components
22 lines (21 loc) • 743 B
TypeScript
import { RouteLocation } from 'vue-router';
export interface Props {
/**
* @docs The current page number.
*/
currentPage: number;
/**
* @docs The current route object.
*/
currentRoute: RouteLocation;
/**
* @docs The total number of pages.
*/
pages: number;
/**
* @docs The maximum number of displayed pages.
*/
maxDisplayed?: number;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
export default _default;