Merge pull request #15385 from alexey-pelykh/patch-2

Use hashmap signature instead of Object
This commit is contained in:
Nathan Shively-Sanders
2017-03-27 11:28:20 -07:00
committed by GitHub

View File

@@ -250,7 +250,7 @@ interface CheerioElement {
tagName: string;
type: string;
name: string;
attribs: Object;
attribs: {[attr: string]: string};
children: CheerioElement[];
childNodes: CheerioElement[];
lastChild: CheerioElement;
@@ -272,4 +272,4 @@ declare var cheerio:CheerioAPI;
declare module "cheerio" {
export = cheerio;
}
}