Files
uptime.link/ts_interfaces/data/checks/pwa.check.ts
2025-12-28 17:59:00 +00:00

23 lines
429 B
TypeScript

import type { TCheckResultStatus } from '../types.js';
/**
* PWA check execution data.
* Used by check runners to store input and results.
*/
export interface IPwaCheck {
inputData: {
domain: string;
};
executionResults: Array<{
subId: string;
timeStarted: number;
timeEnded: number;
duration: number;
status: TCheckResultStatus;
data: {
lhr: any;
reports: any[];
};
}>;
}