UNPKG

vite-plugin-react-server

Version:
43 lines 1.79 kB
import type { Manifest } from "vite"; import type { CreateHandlerOptions, CssContent, PanicThreshold, ResolvedUserOptions } from "../types.js"; import type { PassThrough, Readable } from "node:stream"; /** * HTML Stream Options - for client-rendered pipeable React * HTML = what gets sent to the browser (client-rendered pipeable React) */ export type CreateHtmlStreamOptions = Pick<CreateHandlerOptions<ResolvedUserOptions>, "moduleRootPath" | "moduleBasePath" | "moduleBaseURL" | "route" | "clientPipeableStreamOptions" | "projectRoot" | "verbose" | "logger" | "htmlWorker" | "id" | "children"> & { worker?: any; rscStream?: PassThrough | Readable; url?: string; cssFiles?: Map<string, CssContent>; globalCss?: Map<string, CssContent>; manifest?: Manifest; panicThreshold?: PanicThreshold; pagePath?: string; propsPath?: string; rootPath?: string; htmlPath?: string; pageExportName?: string; propsExportName?: string; rootExportName?: string; htmlExportName?: string; moduleBase?: string; publicOrigin?: string; rscTimeout?: number; htmlTimeout?: number; fileWriteTimeout?: number; workerShutdownTimeout?: number; css?: CreateHandlerOptions["css"]; build?: CreateHandlerOptions["build"]; children?: React.ReactNode; onError?: (error: Error, isPanic: boolean) => void; }; /** * HTML Stream Function - creates client-rendered pipeable React * HTML = what gets sent to the browser */ export type CreateHtmlStreamFn = <Opt extends CreateHtmlStreamOptions = CreateHtmlStreamOptions>(options: Opt) => { abort: (reason?: unknown) => void; pipe: <Writable extends NodeJS.WritableStream>(destination: Writable) => Writable; }; //# sourceMappingURL=createHtmlStream.types.d.ts.map