refactor: add type Payment

This commit is contained in:
Thanaphon Frappet 2024-10-21 15:14:11 +07:00
parent c16732dd1a
commit 00a04edd1d

View file

@ -364,3 +364,10 @@ export type Details = {
contactTel: string;
workName: string;
};
export type PaymentPayload = {
paymentStatus: string;
remark: string;
date: Date;
amount: number;
};