UNPKG

rwsdk

Version:

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

10 lines (9 loc) 432 B
import { type Plugin } from "vite"; export declare function transformJsxScriptTagsCode(code: string, clientEntryPoints: Set<string>, manifest: Record<string, any> | undefined, projectRootDir: string): Promise<{ code: string; map: null; } | undefined>; export declare const transformJsxScriptTagsPlugin: ({ clientEntryPoints, projectRootDir, }: { clientEntryPoints: Set<string>; projectRootDir: string; }) => Plugin;