Merge pull request #8865 from hbakhtiyor/patch-1

Add overloading to `get` method
This commit is contained in:
Horiuchi_H
2016-04-07 17:41:46 +09:00
+1
View File
@@ -106,6 +106,7 @@ interface Cheerio {
eq(index: number): Cheerio;
get(): string[];
get(): CheerioElement[];
get(index: number): CheerioElement;