first commit
Made-with: Cursor
This commit is contained in:
21
src/types.ts
Normal file
21
src/types.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export type House = {
|
||||
id: string
|
||||
slug: string
|
||||
name: string
|
||||
/** Specific micro-hood (e.g. Belltown, Ballard). */
|
||||
neighborhood: string
|
||||
/** Broader Seattle district label for browsing (e.g. Belltown & Downtown, SLU). */
|
||||
area: string
|
||||
tagline: string
|
||||
description: string
|
||||
beds: number
|
||||
baths: number
|
||||
halfBaths?: number
|
||||
sqft: number
|
||||
rent: number
|
||||
availableLabel: string
|
||||
images: string[]
|
||||
highlights: string[]
|
||||
petPolicy: string
|
||||
parking: string
|
||||
}
|
||||
Reference in New Issue
Block a user