Hi I’m working through the build your first app tutorial here: Taking Photos with the Camera - Ionic Documentation
The specific step I am struggling with is:
’ Back at the top of the file, define an array of Photos, which will contain a reference to each photo captured with the Camera. ’
export class PhotoService {
public photos: Photo[] = [];
// other code
}
First question: is says ‘back at the top of the file’; I presume this is the tab2.page.ts file. Also, does it really mean the top? Surely not above the import statements?
Secondly, when I do add it, I get the following error:
“Individual declarations in merged declaration ‘PhotoService’ must be all exported or all local.” I assume this is because one of my imports is PhotoService from the photo.service.
I’ve attached a screenshot that hopefully helps. Any assistance greatly appreciated.
