UNPKG
lru-send
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.0.3
0.0.2
0.0.1
0.0.0
LRU-based caching middleware for Node.js
github.com/tinyhttp/lru-send
tinyhttp/lru-send
lru-send
/
dist
/
types.d.ts
6 lines
(5 loc)
•
170 B
TypeScript
View Raw
1
2
3
4
5
6
/// <reference types="node" />
import
{
ServerResponse
as
Response
}
from
'http'
;
export
interface
LRUResponse
extends
Response
{
send
(
body
:
unknown
):
LRUResponse
; }