UNPKG

lru-send

Version:

LRU-based caching middleware for Node.js

6 lines (5 loc) 170 B
/// <reference types="node" /> import { ServerResponse as Response } from 'http'; export interface LRUResponse extends Response { send(body: unknown): LRUResponse; }