0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
30 lines
687 B
TypeScript
30 lines
687 B
TypeScript
export type Browser = {
|
|
/**
|
|
Human-readadable name of the browser.
|
|
*/
|
|
name: string;
|
|
|
|
/**
|
|
The unique identifier for the browser on the current platform:
|
|
- On macOS, it's the app's bundle identifier.
|
|
- On Linux, it's the desktop file identifier (from `xdg-mime`).
|
|
- On Windows, it's an invented identifier, because apps on Windows does not have identifiers.
|
|
*/
|
|
id: string;
|
|
};
|
|
|
|
/**
|
|
Get the default browser for the current platform.
|
|
|
|
@returns A promise for the browser.
|
|
|
|
@example
|
|
```
|
|
import defaultBrowser from 'default-browser';
|
|
|
|
console.log(await defaultBrowser());
|
|
//=> {name: 'Safari', id: 'com.apple.Safari'}
|
|
```
|
|
*/
|
|
export default function defaultBrowser(): Promise<Browser>;
|