File size: 266 Bytes
a7476ec
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
declare module 'cloudflare:node' {
    import type { IncomingMessage, ServerResponse } from 'node:http'

    export function httpServerHandler(
        request: Request,
        handler: (req: IncomingMessage, res: ServerResponse) => void
    ): Promise<Response>
}