È necessario scrivere un metodo per ottenere il valore tramite chiave di un oggetto con annidamento illimitato e firma
get(path: string, data: Record<string, unknown>): unknown
const data = { user: { profile: { name: 'Nome' } } }
get('user.profile.name', data)