4 lines
183 B
TypeScript
4 lines
183 B
TypeScript
|
import { IncomingMessage, ServerResponse } from "http"
|
||
|
declare function xPoweredBy(): (_req: IncomingMessage, res: ServerResponse, next: () => void) => void
|
||
|
export default xPoweredBy
|