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

17 lines
326 B
TypeScript
Raw Permalink Normal View History

2023-04-03 11:52:27 +00:00
import { TCheckResultStatus } from './index.js';
2023-04-03 11:40:56 +00:00
export interface IPwaCheck {
inputData: { domain: string };
executionResults: Array<{
subId: string;
timeStarted: number;
timeEnded: number;
duration: number;
status: TCheckResultStatus;
data: {
lhr: any;
reports: any[];
};
}>;
}