UNPKG

vite-plugin-react-server

Version:
17 lines 475 B
import type { Manifest } from "vite"; type TryManifestOptions<SSR extends boolean> = { root: string; outDir: string; ssrManifest?: SSR; }; export declare function tryManifest<SSR extends boolean>(options: TryManifestOptions<SSR>): { type: "success"; manifest: SSR extends true ? Record<string, string[]> : Manifest; error?: never; } | { type: "error"; error: Error; manifest?: never; }; export {}; //# sourceMappingURL=tryManifest.d.ts.map