Skip to content

Commit

Permalink
create :: history type
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Aug 1, 2024
1 parent 6654dbc commit 08e2208
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/utils/types/historyType.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export type StageType = {
name: 'build' | 'deploy';
status: 'Building' | 'Passed' | 'Failed' | 'Unknown';
};

export type HistoryType = {
name: string;
email: string;
scheduled_date: number;
commit_message: string;
stages: StageType[];
};

0 comments on commit 08e2208

Please sign in to comment.