From 272612450f93b1358e3d38e69526c40b6935e8b5 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Mon, 28 Oct 2024 13:30:59 +0700 Subject: [PATCH] feat: add type payment --- src/stores/payment/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/payment/types.ts b/src/stores/payment/types.ts index 4c021f6c..eebe3a89 100644 --- a/src/stores/payment/types.ts +++ b/src/stores/payment/types.ts @@ -23,3 +23,5 @@ export type InvoicePayload = { // NOTE: Will be pulled from quotation installmentNo?: number[]; }; + +export type Payment = Invoice;