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);