fix(core): update

This commit is contained in:
2023-04-03 13:52:27 +02:00
parent 5f89befa03
commit 9b7f76b22a
13 changed files with 31 additions and 37 deletions

View File

@ -1,4 +1,4 @@
import { TCheckResultStatus, TExecutionTiming } from "./index.js";
import { TCheckResultStatus, TExecutionTiming } from './index.js';
export interface IFunctionCheck {
checkId: string;
@ -11,5 +11,5 @@ export interface IFunctionCheck {
status: TCheckResultStatus;
data: any;
checkLog: string[];
}>
}
}>;
}

View File

@ -14,6 +14,6 @@ export interface IPageRankCheck {
executionResults: Array<{
timing: TExecutionTiming;
status: TCheckResultStatus;
pageRankResult: search.IPageRankResult
}>
}
pageRankResult: search.IPageRankResult;
}>;
}

View File

@ -1,4 +1,4 @@
import { TCheckResultStatus } from "./index.js";
import { TCheckResultStatus } from './index.js';
export interface IPwaCheck {
inputData: { domain: string };