From 41181150985c47cd72043eec51d0ae0999da2624 Mon Sep 17 00:00:00 2001 From: NohWookJin Date: Sun, 14 Jan 2024 11:39:48 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20export=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/@types/trips.types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@types/trips.types.ts b/src/@types/trips.types.ts index 93c3172c..accc7011 100644 --- a/src/@types/trips.types.ts +++ b/src/@types/trips.types.ts @@ -1,4 +1,4 @@ -export interface TripRequest { +interface TripRequest { tripName: string; numberOfPeople: number; startDate: string; @@ -7,7 +7,7 @@ export interface TripRequest { subarea: string; } -export interface MyTripType { +interface MyTripType { tripId: number; tripName: string; startDate: string;