Documentation
    Preparing search index...

    Type Alias TablePaginationOptions

    TablePaginationOptions: Partial<
        {
            nextPage: () => void;
            numPages: number;
            page: number;
            previousPage: () => void;
            rowsPerPage: number;
            setRowsPerPage: (rowsPerPage: number) => void;
        },
    >