From 3e2a47e0b3d07a315ba2da5f9ec1d65ef6b66bd0 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 6 Sep 2024 23:08:47 +0530 Subject: [PATCH] feat: create pagination type & update pagination type --- src/context/browserActions.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/context/browserActions.tsx b/src/context/browserActions.tsx index 1e0a5f49..b1d8e1ae 100644 --- a/src/context/browserActions.tsx +++ b/src/context/browserActions.tsx @@ -7,6 +7,7 @@ interface ActionContextProps { getList: boolean; getScreenshot: boolean; paginationMode: boolean; + paginationType: PaginationType; startPaginationMode: () => void; startGetText: () => void; stopGetText: () => void; @@ -15,6 +16,7 @@ interface ActionContextProps { startGetScreenshot: () => void; stopGetScreenshot: () => void; stopPaginationMode: () => void; + updatePaginationType: (type: PaginationType) => void; } const ActionContext = createContext(undefined);