@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
8 lines (7 loc) • 392 B
TypeScript
import { PaginationLocale as RcPaginationLocale, PaginationProps as RcPaginationProps } from 'rc-pagination';
export interface PaginationLocale extends RcPaginationLocale {
}
export interface PaginationProps extends Omit<RcPaginationProps, 'prevIcon' | 'nextIcon' | 'jumpPrevIcon' | 'jumpNextIcon' | 'locale' | 'itemRender'> {
size?: 'default' | 'small';
locale?: PaginationLocale;
}