7 lines
258 B
TypeScript
7 lines
258 B
TypeScript
|
|
/**
|
||
|
|
*
|
||
|
|
* @param browser It can be "default", "chrome", "firefox", "safari", "ie", "msie", "edge" or "msedge" or executable path to the browser
|
||
|
|
* @returns executable path to browser
|
||
|
|
*/
|
||
|
|
export declare function locateDefaultSystemBrowser(): Promise<string>;
|