Angular - TypeScript in Angular
Given two interfaces:
How would you create a valid
interface Address { street: string; city: string; }
interface User { name: string; address: Address; }How would you create a valid
User object with nested Address?