From f998d32b0af3cb67130e50d5dc41a073022fd868 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 23 Oct 2025 12:55:31 +0700 Subject: [PATCH] chore(FE-147): add ApproveAction type --- src/types/api/api-general.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/api/api-general.d.ts b/src/types/api/api-general.d.ts index c118b5a4..3a9f9bc9 100644 --- a/src/types/api/api-general.d.ts +++ b/src/types/api/api-general.d.ts @@ -104,3 +104,5 @@ export type ApprovalsLine = { role?: string; status: 'approved' | 'rejected' | 'waiting'; }[]; + +export type ApproveAction = 'APPROVED' | 'REJECTED';