@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
10 lines (9 loc) • 431 B
TypeScript
import * as React from "react";
export interface IPagingProps {
page: number;
pagesCount: number;
showNextPage(): void;
showPrevPage(): void;
}
declare const Paging: (props: IPagingProps) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)>) | (new (props: any) => React.Component<any, any, any>)>;
export default Paging;