23 lines
429 B
TypeScript
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[];
|
|
};
|
|
}>;
|
|
}
|