Add API reports

Signed-off-by: irma12 <irma@roadie.io>
This commit is contained in:
irma12
2021-11-23 15:51:19 +01:00
parent 289de3ab34
commit c39cf20e1f
2 changed files with 2 additions and 5 deletions
+2 -1
View File
@@ -4,6 +4,7 @@
```ts
import { DateTime } from 'luxon';
import { JsonValue } from '@backstage/types';
// @public
export interface BooleanCheckResult extends CheckResult {
@@ -25,7 +26,7 @@ export interface CheckResponse {
export type CheckResult = {
facts: FactResponse;
check: CheckResponse;
result: any;
result: JsonValue;
};
// @public