vite-plugin-react-server
Version:
Vite plugin for React Server Components (RSC)
11 lines • 531 B
TypeScript
import type { OutputBundle } from "rollup";
export declare const bundles: {
server: OutputBundle | null;
client: OutputBundle | null;
static: OutputBundle | null;
};
export declare const addBundle: (name: "server" | "client" | "static") => (bundle: OutputBundle) => void;
export declare const addStaticBundle: (bundle: OutputBundle) => void;
export declare const addClientBundle: (bundle: OutputBundle) => void;
export declare const addServerBundle: (bundle: OutputBundle) => void;
//# sourceMappingURL=bundles.d.ts.map