fix(core): update
This commit is contained in:
16
ts/data/checks/pwa.check.ts
Normal file
16
ts/data/checks/pwa.check.ts
Normal 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[];
|
||||
};
|
||||
}>;
|
||||
}
|
||||
Reference in New Issue
Block a user