ryuu.js
Version:
Ryuu JavaScript Utility Library
8 lines (7 loc) • 299 B
TypeScript
/**
* Sends a navigation event message to the parent window to navigate to a specified URL.
*
* @param {string} url - The URL to navigate to.
* @param {boolean} isNewWindow - Whether to open the URL in a new window.
*/
export declare function navigate(url: string, isNewWindow: boolean): void;