feat: export pagination type

This commit is contained in:
karishmas6
2024-09-06 23:58:22 +05:30
parent 95fcdeb497
commit c41df0cd96

View File

@@ -1,6 +1,6 @@
import React, { createContext, useContext, useState, ReactNode } from 'react';
type PaginationType = 'scrollDown' | 'scrollUp' | 'clickNext' | 'clickLoadMore' | 'none' | '';
export type PaginationType = 'scrollDown' | 'scrollUp' | 'clickNext' | 'clickLoadMore' | 'none' | '';
interface ActionContextProps {
getText: boolean;