interfaces/ts/data/checks/pwa.check.ts
2023-04-03 13:52:27 +02:00

17 lines
326 B
TypeScript

import { TCheckResultStatus } from './index.js';
export interface IPwaCheck {
inputData: { domain: string };
executionResults: Array<{
subId: string;
timeStarted: number;
timeEnded: number;
duration: number;
status: TCheckResultStatus;
data: {
lhr: any;
reports: any[];
};
}>;
}