UNPKG

295 BTypeScriptView Raw
1/**
2 * Attempts to open the browser with a given URL.
3 *
4 * On Mac OS X, attempts to reuse an existing Chrome tab via AppleScript.
5 *
6 * Otherwise, falls back to [open](https://github.com/sindresorhus/open) behavior.
7 */
8declare function openBrowser(url: string): boolean;
9export = openBrowser;