Issue:
The variable 'environment' is implicitly assigned the type 'any' because it lacks a specific type annotation and is referenced within its own initialization code.
Code Snippet:
export const environment = {
production: false,
firebaseConfig : {
apiKey: "myKey",
authDomain: "domain",
projectId: "id",
storageBucket: "storageUrl",
messagingSenderId: "59142751602",
appId: "a:b:web:c"
},
};