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

@@ -45,8 +45,8 @@ type RunCaseType = {
type CaseAttachmentType = {
createdAt: Date;
updatedAt: Date;
CaseId: number;
AttachmentId: number;
caseId: number;
attachmentId: number;
};
type AttachmentType = {
@@ -59,16 +59,6 @@ type AttachmentType = {
caseAttachments: CaseAttachmentType;
};
type CaseTypeCountType = {
type: number;
count: number;
};
type CasePriorityCountType = {
priority: number;
count: number;
};
type CasesMessages = {
testCaseList: string;
id: string;
@@ -97,6 +87,7 @@ type CaseMessages = {
pleaseEnterTitle: string;
description: string;
testCaseDescription: string;
priority: string;
type: string;
template: string;
testDetail: string;
@@ -119,12 +110,4 @@ type CaseMessages = {
areYouSureLeave: string;
};
export type {
CaseType,
StepType,
AttachmentType,
CaseTypeCountType,
CasePriorityCountType,
CasesMessages,
CaseMessages,
};
export type { CaseType, StepType, AttachmentType, CasesMessages, CaseMessages };