The standard module import syntax in TypeScript,
import foo = require('foo');
requires you to bind a new identifier to the imported module. But in some cases I just want to express a dependency without binding anything. For example, if I'm depending on a jQuery plugin that doesn't actually export things, it just adds new fields to jQuery itself. Is there a way to do something like
require('foo');
without the import part?