box-ui-elements
Version:
Box UI Elements
11 lines (10 loc) • 404 B
TypeScript
import * as React from 'react';
export interface OffsetBasedPaginationProps {
isSmall: boolean;
offset?: number;
onOffsetChange?: (offset: number) => void;
pageSize?: number;
totalCount?: number;
}
declare const OffsetBasedPagination: ({ isSmall, offset, onOffsetChange, pageSize, totalCount, }: OffsetBasedPaginationProps) => React.JSX.Element;
export default OffsetBasedPagination;