Merge pull request #17961 from josenicomaia/patch-1

@types/phantom - Missing set Settings
This commit is contained in:
Ryan Cavanaugh
2017-07-13 09:57:43 -07:00
committed by GitHub

View File

@@ -34,6 +34,7 @@ export interface WebPage {
property<T>(key: string, value: T): Promise<void>;
setting<T>(key: string): Promise<T>;
setting<T>(key: string, value: T): Promise<T>;
addCookie(cookie: ICookie): Promise<boolean>;
deleteCookie(cookieName: string): Promise<boolean>;