“
”
“
”
“
”
: designed to be practical and useful, rather than attractive.
: working properly
const interface person {
name: string
age: number
likesBatman: boolean
}
<header>
</header>
<div>
</div>
const interface person {
name: any
age: any
likesBatman: any
}
“
”