@types/on-headers
Version:
TypeScript definitions for on-headers
21 lines (17 loc) • 722 B
TypeScript
/// <reference types="node" />
import { ServerResponse } from "http";
/**
* This will add the listener to fire when headers are emitted for res.
* The listener is passed the response object as its context (this).
* Headers are considered emitted only once, right before they
* are sent to the client.
*
* When this is called multiple times on the same res, the listeners
* are fired in the reverse order they were added.
*
* @param res HTTP server response object
* @param listener Function to call prior to headers being emitted,
* the response object is passed as this context.
*/
declare function onHeaders(res: ServerResponse, listener: (this: ServerResponse) => void): void;
export = onHeaders;