Modifications based on PR comments

Signed-off-by: irma12 <irma@roadie.io>
This commit is contained in:
irma12
2021-11-23 12:50:01 +01:00
parent f4420c7767
commit 883fd2f3a5
9 changed files with 37 additions and 57 deletions
+2 -1
View File
@@ -31,7 +31,8 @@
},
"dependencies": {
"@types/luxon": "^2.0.5",
"luxon": "^2.0.2"
"luxon": "^2.0.2",
"@backstage/types": "^0.1.1"
},
"devDependencies": {
"@backstage/cli": "^0.9.0"
+2 -1
View File
@@ -15,6 +15,7 @@
*/
import { DateTime } from 'luxon';
import { JsonValue } from '@backstage/types';
/**
* @public
@@ -112,7 +113,7 @@ export type FactResponse = {
export type CheckResult = {
facts: FactResponse;
check: CheckResponse;
result: any;
result: JsonValue;
};
/**