fix: Typescript check (#21)

* fix: typescript check error

* fix: typescript check error

* fix: typescript check error

* fix: typescript check error

* fix: typescript check error
This commit is contained in:
Takeshi Kimata
2024-07-28 00:20:24 +09:00
committed by GitHub
parent 44b7c7b9c3
commit c60491db09
60 changed files with 496 additions and 311 deletions

View File

@@ -13,14 +13,8 @@ export type ProjectType = {
Runs: RunType[]; // additional property
};
export type ProjectsMessages = {
projectList: string;
newProject: string;
id: string;
publicity: string;
name: string;
detail: string;
lastUpdate: string;
export type ProjectDialogMessages = {
project: string;
projectName: string;
projectDetail: string;
public: string;
@@ -28,7 +22,20 @@ export type ProjectsMessages = {
ifYouMakePublic: string;
close: string;
create: string;
update: string;
pleaseEnter: string;
};
export type ProjectsMessages = {
projectList: string;
newProject: string;
id: string;
publicity: string;
public: string;
private: string;
name: string;
detail: string;
lastUpdate: string;
noProjectsFound: string;
};
@@ -36,5 +43,6 @@ export type ProjectMessages = {
home: string;
testCases: string;
testRuns: string;
members: string;
settings: string;
};