UNPKG

@alithanar/react-automation-profiler

Version:

Automated React profiling and data visualization using React's Profiler API, Puppeteer, and D3.

13 lines (12 loc) 505 B
import { AutomationResult, IResults } from '../interfaces'; export interface IAutomationResultsStorage { appendResult(flowKey: string, result: AutomationResult): void; removeResultsByKey(flowKey: string): void; getAllResults(): IResults; } export declare class AutomationResultsStorage implements IAutomationResultsStorage { private storage; appendResult(flowKey: string, result: AutomationResult): void; removeResultsByKey(flowKey: string): void; getAllResults(): IResults; }