fix(core): update

This commit is contained in:
2023-04-03 13:40:56 +02:00
parent a1bf280a2f
commit 8e9c6be7e0
13 changed files with 133 additions and 68 deletions

View File

@@ -0,0 +1,16 @@
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[];
};
}>;
}