From 314f7764b16b88a57672e8fc09dc39672f94f5ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Nicodemos=20Maia=20Neto?= Date: Tue, 11 Jul 2017 21:32:12 -0300 Subject: [PATCH] Missing set Settings Missing set Settings. https://github.com/amir20/phantomjs-node#pagesetting http://phantomjs.org/api/webpage/property/settings.html --- types/phantom/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/phantom/index.d.ts b/types/phantom/index.d.ts index bd337dc624..bc9b4e4f1d 100644 --- a/types/phantom/index.d.ts +++ b/types/phantom/index.d.ts @@ -34,6 +34,7 @@ export interface WebPage { property(key: string, value: T): Promise; setting(key: string): Promise; + setting(key: string, value: T): Promise; addCookie(cookie: ICookie): Promise; deleteCookie(cookieName: string): Promise;