fix(core): update
This commit is contained in:
15
ts/data/checks/function.check.ts
Normal file
15
ts/data/checks/function.check.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { TCheckResultStatus, TExecutionTiming } from "./index.js";
|
||||
|
||||
export interface IFunctionCheck {
|
||||
checkId: string;
|
||||
inputData: {
|
||||
domain: string;
|
||||
functionDef: string;
|
||||
};
|
||||
executionResults: Array<{
|
||||
timing: TExecutionTiming;
|
||||
status: TCheckResultStatus;
|
||||
data: any;
|
||||
checkLog: string[];
|
||||
}>
|
||||
}
|
||||
Reference in New Issue
Block a user