22 lines
473 B
TypeScript
22 lines
473 B
TypeScript
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
|
|
}
|