Skip to content

Commit

Permalink
feat: 게시글 확인 페칭 response 타입 싱크 맞추기
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhi394 committed Mar 2, 2024
1 parent 2288451 commit a5ef772
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions pages/memory-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,19 @@ export type GetMemoryListRes = {
total: number
content: Array<MemoryType>
pageable: {
sort: {
orders: [
{
direction: string
property: string
ignoreCase: boolean
nullHandling: string
}
]
}
page: number
size: number
}
}

export type MemoryType = {
id: number
keyword: string
backgroundImage: string
text: string
videoId: string
createdAt: string
memberId: number
deletedAt?: string
}

Expand Down

0 comments on commit a5ef772

Please sign in to comment.