Merge pull request #4979 from GMouron/master

cheerio: The find function can also take a cheerio element as an argument
This commit is contained in:
Masahiro Wakame
2015-07-20 15:29:45 +09:00

View File

@@ -44,6 +44,7 @@ interface Cheerio {
// Traversing
find(selector: string): Cheerio;
find(element: Cheerio): Cheerio;
parent(selector?: string): Cheerio;
parents(selector?: string): Cheerio;