UNPKG

rwsdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

12 lines (11 loc) 463 B
/** * Run the local development server and return the URL */ export declare function runDevServer(cwd?: string): Promise<{ url: string; stopDev: () => Promise<void>; }>; /** * Runs tests against the development server */ export declare function runDevTest(url: string, artifactDir: string, browserPath?: string, headless?: boolean, bail?: boolean, skipClient?: boolean, realtime?: boolean, skipHmr?: boolean, skipStyleTests?: boolean): Promise<void>;