rwsdk
Version:
Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime
10 lines (9 loc) • 494 B
text/typescript
import { Plugin } from "vite";
export declare const generateVendorBarrelContent: (files: Set<string>, projectRootDir: string) => string;
export declare const generateAppBarrelContent: (files: Set<string>, projectRootDir: string) => string;
export declare const directiveModulesDevPlugin: ({ clientFiles, serverFiles, projectRootDir, workerEntryPathname, }: {
clientFiles: Set<string>;
serverFiles: Set<string>;
projectRootDir: string;
workerEntryPathname: string;
}) => Plugin;