chore(server-render): add optional cookies property to CategorizedRequest type

This commit is contained in:
Welkin Wong
2026-01-17 23:00:16 +08:00
parent e1cfdded02
commit 121f58d06f

View File

@@ -42,6 +42,7 @@ export type CategorizedRequest = Omit<http.IncomingMessage, 'url'> & {
modern: boolean;
path: string;
url: URL;
cookies?: Record<string, string>;
}
export interface ServerSink extends ClientSink {