Files
parcer/src/context/browserActions.tsx

11 lines
261 B
TypeScript
Raw Normal View History

2024-07-24 19:29:52 +05:30
import React, { createContext, useState, useContext, ReactNode } from 'react';
interface ActionContextType {
getText: boolean;
getScreenshot: boolean;
handleGetText: () => void;
handleGetScreenshot: () => void;
resetActions: () => void;
}