This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type LocalCityType = { | |
| cityTitle: string | |
| countryTitle: string | |
| } | |
| type AddressType = { | |
| streetTitle: string | |
| city: LocalCityType | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type StreetType = { | |
| title: string | |
| } | |
| type AddressType = { | |
| number: number | |
| street: StreetType | |
| } | |
| export type HouseType = { | |
| buildedAt: number | |
| repaired: boolean |