From 0fba0b3e518f33651213b7a7495f4106cdedc94e Mon Sep 17 00:00:00 2001 From: Dalai Jotisalikorn Surenjargal Date: Sun, 23 Jul 2023 22:29:39 +0700 Subject: [PATCH] refactor: change type to interface --- src/types/stamp.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/stamp.ts b/src/types/stamp.ts index 671d21e..c15863a 100644 --- a/src/types/stamp.ts +++ b/src/types/stamp.ts @@ -1,5 +1,5 @@ -export type StampInfo = { +export interface StampInfo { stampId: string; imgUrl: string; check: boolean; -}; +}