When I try to import node.js module in Typescript like this:
import co = require(\'co\'); import co from \'co\';
without providing type definit
Just import the module the following way:
import 'co';