Skip to content

Instantly share code, notes, and snippets.

View phoenix2307's full-sized avatar
🎯
Focusing

Alex phoenix2307

🎯
Focusing
View GitHub Profile
@phoenix2307
phoenix2307 / student.ts
Created June 26, 2022 17:20
studentType
type LocalCityType = {
cityTitle: string
countryTitle: string
}
type AddressType = {
streetTitle: string
city: LocalCityType
}
type StreetType = {
title: string
}
type AddressType = {
number: number
street: StreetType
}
export type HouseType = {
buildedAt: number
repaired: boolean