Files
interfaces/ts/data/checks/pwa.check.ts

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[];
};
}>;
}