UNPKG

kequapp

Version:

A minimal, zero-magic Node web framework built on native APIs

4 lines (3 loc) 250 B
import type { IncomingMessage, ServerResponse } from 'node:http'; import type { TPathname } from '../../types.ts'; export default function sendFile(req: IncomingMessage, res: ServerResponse, location: TPathname, contentType?: string): Promise<void>;