Closed eun-seong closed 2 years ago
현재 있는 type Plan을 Response용으로 변경 후, type Location 추가하겠습니다.
Plan
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 입니다.
이슈 설명
현재 있는 type
Plan
을 Response용으로 변경 후, typeLocation
추가하겠습니다.최종 type 입니다.
세부 리스트
고민해볼 사항