Display information of project on home tab

This commit is contained in:
Takeshi Kimata
2024-05-06 19:02:29 +09:00
parent 6ccbf1be29
commit 47457e45f4
7 changed files with 131 additions and 5 deletions

View File

@@ -26,6 +26,11 @@ type RunStatusCountType = {
count: number;
};
type ProgressSeriesType = {
name: string;
data: number[];
}
type RunsMessages = {
runList: string,
id: string;
@@ -78,6 +83,7 @@ export {
RunCaseType,
RunCaseInfoType,
RunStatusCountType,
ProgressSeriesType,
RunsMessages,
RunMessages,
};