Using the introduction code:
```js
var cheerio = require('cheerio');
var $ = cheerio.load('<h2 class="title">Hello world</h2>');
$('h2.title').text('Hello there!');
$('h2').addClass('welcome');
$.html();
//=> <h2 class="title welcome">Hello there!</h2>
```
No completions for members of `cheerio`, and of course none for `$`. Hovering over `cheerio` does give info, and Find All References shows the definition of the module, so it's just the members.
```js
var cheerio = require('cheerio');
var $ = cheerio.load('<h2 class="title">Hello world</h2>');
$('h2.title').text('Hello there!');
$('h2').addClass('welcome');
$.html();
//=> <h2 class="title welcome">Hello there!</h2>
```
No completions for members of `cheerio`, and of course none for `$`. Hovering over `cheerio` does give info, and Find All References shows the definition of the module, so it's just the members.