Display information of project on home tab

This commit is contained in:
Takeshi Kimata
2024-05-06 13:35:32 +09:00
parent ac9af2d604
commit 3de1bd2d42
15 changed files with 323 additions and 36 deletions

View File

@@ -49,6 +49,11 @@ type AttachmentType = {
caseAttachments: CaseAttachmentType;
};
type CaseTypeCountType = {
type: number;
count: number;
};
export type CasesMessages = {
testCaseList: string;
id: string;
@@ -63,6 +68,7 @@ export type CasesMessages = {
high: string;
medium: string;
low: string;
noCasesFound: string;
};
export type CaseMessages = {
@@ -113,4 +119,4 @@ export type CaseMessages = {
maxFileSize: string;
};
export { CaseType, StepType, AttachmentType, CasesMessages, CaseMessages };
export { CaseType, StepType, AttachmentType, CaseTypeCountType, CasesMessages, CaseMessages };