rwsdk
Version:
Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime
11 lines (10 loc) • 363 B
text/typescript
import type { Browser } from "puppeteer-core";
import { SmokeTestOptions } from "./types.mjs";
/**
* Launch a browser instance
*/
export declare function launchBrowser(browserPath?: string, headless?: boolean): Promise<Browser>;
/**
* Get the browser executable path
*/
export declare function getBrowserPath(testOptions?: SmokeTestOptions): Promise<string>;