UNPKG

@wix-pilot/core

Version:

A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)

13 lines (12 loc) 409 B
export declare class StepPerformerCacheHandler { private cache; private temporaryCache; private readonly cacheFilePath; constructor(cacheFileName?: string); loadCacheFromFile(): void; private saveCacheToFile; getStepFromCache(key: string): any | undefined; addToTemporaryCache(key: string, value: any): void; flushTemporaryCache(): void; clearTemporaryCache(): void; }