Criada a API do site

This commit is contained in:
Caio1w
2025-10-29 19:56:41 -03:00
parent f201c8edbd
commit 4a14f533d2
3074 changed files with 780728 additions and 41 deletions

29
node_modules/default-browser/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
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>;