chore(FE-91): create ApprovalsLine type

This commit is contained in:
ValdiANS
2025-10-16 10:01:50 +07:00
parent 93beb86f91
commit b7a30cc73a
+8
View File
@@ -66,3 +66,11 @@ export type flags =
| 'STARTER'
| 'FINISHER'
| 'OVK';
export type ApprovalsLine = {
action_by?: string;
date?: string;
notes?: string;
role?: string;
status: 'approved' | 'rejected' | 'waiting';
}[];