DefinitelyTyped/cheerio
rhysd 365b6ffc7c Fix exporting cheerio module
cheerio is intended to be used as below:

```javascript
var cheerio = require('cheerio'),
    $ = cheerio.load('<h2 class="title">Hello world</h2>');
```

So we should use `import * as cheerio from "cheerio"` in TypeScript.
However, `cheerio` was defined with `export default` in cheerio.d.ts.
2015-09-04 17:23:11 +09:00
..
cheerio-tests.ts Fix exporting cheerio module 2015-09-04 17:23:11 +09:00
cheerio.d.ts Fix exporting cheerio module 2015-09-04 17:23:11 +09:00