webforai
Version:
A library that provides a web interface for AI
10 lines (9 loc) • 519 B
TypeScript
export declare const USER_AGENT = "mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/125.0.0.0 safari/537.36";
/**
* Useful function for load the HTML of a URL using the Fetch API.
* **Not recommended** for use in production environments.
* @param url - The URL to load.
* @param userAgent - The user agent to use. Default is a Chrome user agent.
* @returns The HTML content of the URL.
*/
export declare const loadHtml: (url: string, userAgent?: string) => Promise<string>;