Updated Cheerio Element definition according to doc

This commit is contained in:
Almouro
2015-08-16 12:12:51 +02:00
parent 3e6f9cbd89
commit 81166431fe
+6 -1
View File
@@ -244,10 +244,15 @@ interface CheerioElement {
name: string;
attribs: Object;
children: CheerioElement[];
childNodes: CheerioElement[];
lastChild: CheerioElement;
next: CheerioElement;
nextSibling: CheerioElement;
prev: CheerioElement;
previousSibling: CheerioElement;
parent: CheerioElement;
root: CheerioElement;
parentNode: CheerioElement;
nodeValue: string;
}
interface CheerioAPI extends CheerioSelector {