websocket-chat / src /global.d.ts
harsh-dev's picture
Add application file
a7476ec unverified
raw
history blame contribute delete
266 Bytes
declare module 'cloudflare:node' {
import type { IncomingMessage, ServerResponse } from 'node:http'
export function httpServerHandler(
request: Request,
handler: (req: IncomingMessage, res: ServerResponse) => void
): Promise<Response>
}