From c41df0cd96834d61796dd86737bb86010dcc07af Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 6 Sep 2024 23:58:22 +0530 Subject: [PATCH] feat: export pagination type --- src/context/browserActions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/browserActions.tsx b/src/context/browserActions.tsx index 4cbec7d0..f65e7399 100644 --- a/src/context/browserActions.tsx +++ b/src/context/browserActions.tsx @@ -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;