Merge pull request #15328 from alexey-pelykh/patch-3

Cookie.expires is a string, not Date
This commit is contained in:
Paul van Brenk
2017-03-23 14:31:58 -07:00
committed by GitHub

2
phantom/index.d.ts vendored
View File

@@ -47,7 +47,7 @@ export interface ICookie {
path: string,
httponly?: boolean,
secure?: boolean,
expires?: Date
expires?: string
}
export interface IPaperSizeOptions {