From 38466bd67765f7e59488365d67ae093a1083e257 Mon Sep 17 00:00:00 2001 From: VILIC VANE Date: Tue, 17 Jun 2014 16:43:35 +0800 Subject: [PATCH] change return type of data() to any --- cheerio/cheerio.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheerio/cheerio.d.ts b/cheerio/cheerio.d.ts index 92334de45..f0bf372f4 100644 --- a/cheerio/cheerio.d.ts +++ b/cheerio/cheerio.d.ts @@ -16,7 +16,7 @@ interface Cheerio { attr(name: string): string; attr(name: string, value: any): Cheerio; - data(): Object; + data(): any; val(): string; val(value: string): Cheerio;