Cheerio: changed "import module" to "import require"

This commit is contained in:
gstamac
2013-08-23 12:39:34 +02:00
parent c662aa0fbb
commit 0243aa7790
+1 -1
View File
@@ -1,6 +1,6 @@
/// <reference path="cheerio.d.ts" />
import cheerio = module("cheerio");
import cheerio = require("cheerio");
var $ = cheerio.load("<html></html>");
var $el = $('selector');