When I try to verify
if (!window.MSStream) ...
I encounter an error in TypeScript, the intellisense highlights the MSStream object because it has not been declared - which is precisely why I need to check it. Unfortunately, this prevents me from building my Angular2 app due to the error. Is there a way to trick TypeScript or make it less strict, allowing me to perform the check without interference...