33 lines
584 B
TypeScript
33 lines
584 B
TypeScript
export type ProjectType = {
|
|
id: number;
|
|
name: string;
|
|
detail: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
};
|
|
|
|
export type ProjectsMessages = {
|
|
projectList: string;
|
|
newProject: string;
|
|
editProject: string;
|
|
deleteProject: string;
|
|
id: string;
|
|
name: string;
|
|
detail: string;
|
|
lastUpdate: string;
|
|
actions: string;
|
|
projectName: string;
|
|
projectDetail: string;
|
|
close: string;
|
|
create: string;
|
|
update: string;
|
|
pleaseEnter: string;
|
|
noProjectsFound: string;
|
|
};
|
|
|
|
export type ProjectMessages = {
|
|
home: string;
|
|
testCases: string;
|
|
testRuns: string;
|
|
};
|