From 0243aa7790dd79f668a9fd6d0eb89527a034bef9 Mon Sep 17 00:00:00 2001 From: gstamac Date: Fri, 23 Aug 2013 12:39:34 +0200 Subject: [PATCH] Cheerio: changed "import module" to "import require" --- cheerio/cheerio-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheerio/cheerio-tests.ts b/cheerio/cheerio-tests.ts index 00cc95ee8b..71d54c5579 100644 --- a/cheerio/cheerio-tests.ts +++ b/cheerio/cheerio-tests.ts @@ -1,6 +1,6 @@ /// -import cheerio = module("cheerio"); +import cheerio = require("cheerio"); var $ = cheerio.load(""); var $el = $('selector');