rwsdk
Version:
Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime
9 lines (8 loc) • 306 B
text/typescript
import { type Plugin } from "vite";
export declare function transformJsxScriptTagsCode(code: string, manifest?: Record<string, any>): Promise<{
code: string;
map: null;
} | undefined>;
export declare const transformJsxScriptTagsPlugin: ({ manifestPath, }: {
manifestPath: string;
}) => Plugin;