Include suggested changes

Signed-off-by: Miguel Alexandre <m.alexandrex@gmail.com>
This commit is contained in:
Miguel Alexandre
2023-03-15 17:43:01 +01:00
parent f538b9c5b8
commit d197f9f782
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -57,13 +57,13 @@ export type Check = {
* Metadata to be returned in case a check has been successfully evaluated
* Can contain links, description texts or other actionable items
*/
successMetadata?: Record<string, any>;
successMetadata?: Record<string, unknown>;
/**
* Metadata to be returned in case a check evaluation has ended in failure
* Can contain links, description texts or other actionable items
*/
failureMetadata?: Record<string, any>;
failureMetadata?: Record<string, unknown>;
};
/**