depromeet / imgoing-frontend

암고잉 | 나만의 약속 준비 루틴 관리 서비스
5 stars 0 forks source link

[Common] Plan Type 수정 #197

Closed eun-seong closed 2 years ago

eun-seong commented 2 years ago

이슈 설명

현재 있는 type Plan을 Response용으로 변경 후, type Location 추가하겠습니다.

export interface Location {
  name: string;
  lat: number;
  lng: number;
}

export type Plan = {
  id: number;
  name: string;
  arrivalAt: string;
  arrival: Location;
  departure: Location;
  belongings: string;
  memo: string;
  tasks: Task[];
};

최종 type 입니다.

세부 리스트

고민해볼 사항