I am using a library that is "smartly" exporting a namespace Math from their library
import { Tool, Math } from 'library';
The problem is, when I use the library's Math, I am also using some native Math function from the browser.
Is there a way to specify which namespace to use ?
Math.customLib()
Math.nativeMath()
how to tell ts which one to use ?