feat(FE-174): add FormStepStatus type to enhance daily recording form state management

This commit is contained in:
rstubryan
2025-10-31 13:52:36 +07:00
parent 2d30514d64
commit e7ed3d6ab2
+6
View File
@@ -115,3 +115,9 @@ export type BaseApproval = {
};
export type ApproveAction = 'APPROVED' | 'REJECTED';
export type FormStepStatus = {
name: string;
isCompleted: boolean;
isCurrent: boolean;
};