There are two global variables that come from different third-party files with the same name. Previously, I would use them like this:
declare var someVar;
But now, how can I use both of these variables?
declare var someVar;
declare var someVar;
Is there a way to do this?