Files
housing-helper/src/types.ts
Dr Jones 697185c0a1 first commit
Made-with: Cursor
2026-04-25 06:56:23 +00:00

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
}