Currently if have an import of a library which doesnt have any type definition, like this:
import {A} from 'randomLib';
Typescript will mark an error saying it cant find randomLib
anywhere.
We need some way of telling typescript to suppress the error for this particular import.