Merge pull request #11060 from NYPL-Simplified/master

jsdom: Added changeURL.
This commit is contained in:
Zhengbo Li
2016-09-06 18:02:02 -07:00
committed by GitHub

1
jsdom/jsdom.d.ts vendored
View File

@@ -68,6 +68,7 @@ declare module "jsdom" {
export function createCookieJar(): CookieJar;
export function nodeLocation(node: Node): any;
export function reconfigureWindow(window: Window, newProps: WindowProperties): void;
export function changeURL(window: Window, url: string): void;
export function jQueryify(window: Window, jqueryUrl: string, callback: (window: Window, jquery: JQuery) => any): void;