From 7fa01d97a106dcd937d1d9b58d5ad170ee6f03bc Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 6 Sep 2024 23:08:01 +0530 Subject: [PATCH] feat: create PaginationType --- src/context/browserActions.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/context/browserActions.tsx b/src/context/browserActions.tsx index 06e903b8..1e0a5f49 100644 --- a/src/context/browserActions.tsx +++ b/src/context/browserActions.tsx @@ -1,5 +1,7 @@ import React, { createContext, useContext, useState, ReactNode } from 'react'; +type PaginationType = 'scrollDown' | 'scrollUp' | 'clickNext' | 'clickLoadMore' | ''; + interface ActionContextProps { getText: boolean; getList: boolean;