-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Toby edited this page Dec 10, 2022
·
6 revisions
export type Book = {
id: number
title: string
image_covers: {
uri:string
}[]
price: number
posted: string
user_id: number
}
export type BookDetails = Book & {
description?: string
bookCondition: string
location: string
views: number
}
export type User = {
id: number
username: string
avatar: {
uri:string
}
location: string
rated: number
}