Quando estou fazendo o subscribe ele reclama que o objeto não contém a descrição nem a url
Error: src/app/app.component.html:3:54 - error TS2339: Property 'url' does not exist on type 'Object'.
3 <app-photo *ngFor="let photo of photos" [url]="photo.url" [description]="photo.description"></app-photo>
~~~
src/app/app.component.ts:6:16
6 templateUrl: './app.component.html',
~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component AppComponent.
Error: src/app/app.component.html:3:80 - error TS2339: Property 'description' does not exist on type 'Object'.
3 <app-photo *ngFor="let photo of photos" [url]="photo.url" [description]="photo.description"></app-photo>
~~~~~~~~~~~
src/app/app.component.ts:6:16
6 templateUrl: './app.component.html',
~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component AppComponent.
✖ Failed to compile.