I need a way to access the list of objects that aurelia makes.
Specifically, I have file called current-user.ts. That file has this code in it:
export var currentUser = null;
I need a way to access the value of this variable. Preferably without calling any functions. (I am trying to inject the user value into an app called Dynatrace.)
I have tried looking through the window
and document.body.aurelia.container
classes, but I can't find a way to grab the value.