Build api report

Signed-off-by: Marek Šneberger <marek@sneberger.cz>
This commit is contained in:
Marek Šneberger
2023-01-18 11:33:12 +01:00
parent 0a07bb9446
commit b86c02c3b7
+7
View File
@@ -21,12 +21,19 @@ export interface RadarEntry {
description?: string;
id: string;
key: string;
links?: Array<RadarEntryLink>;
quadrant: string;
timeline: Array<RadarEntrySnapshot>;
title: string;
url: string;
}
// @public
export interface RadarEntryLink {
title: string;
url: string;
}
// @public
export interface RadarEntrySnapshot {
date: Date;