puppeteer: fix setCookie typing

This commit is contained in:
niris
2017-12-06 14:27:24 +08:00
parent 7f0c54c130
commit f43da7f9db

View File

@@ -200,6 +200,8 @@ export interface SetCookie {
name: string;
/** The cookie value. */
value: string;
/** The request-URI to associate with the setting of the cookie. This value can affect the default domain and path values of the created cookie. */
url?: string;
/** The cookie domain. */
domain?: string;
/** The cookie path. */