From c5752050bc13a060f7c84cdd2ef81d6688476ba2 Mon Sep 17 00:00:00 2001 From: Ru Chern Chong Date: Wed, 10 Jul 2024 02:59:50 +0800 Subject: [PATCH] Fix types --- types/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types/index.ts b/types/index.ts index 416a85b..8633c73 100644 --- a/types/index.ts +++ b/types/index.ts @@ -30,8 +30,8 @@ export interface COEResult { month: string; bidding_no: string; vehicle_class: string; - quota: string; - bids_success: string; - bids_received: string; - premium: string; + quota: number; + bids_success: number; + bids_received: number; + premium: number; }