askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
12 lines (11 loc) • 524 B
TypeScript
import { ControlCommand } from '../ui-control-commands';
import { CacheEntryReference } from './cache-entry-reference';
export declare class CacheEntry {
alwaysValid: boolean;
controlCommand: ControlCommand;
reference?: CacheEntryReference | undefined;
createdAt: Date;
constructor(alwaysValid: boolean, controlCommand: ControlCommand, reference?: CacheEntryReference | undefined, createdAt?: Date);
static fromJson(json: CacheEntry): CacheEntry | undefined;
toJson(): Record<string, unknown>;
}