UNPKG
nocache
Version:
latest (4.0.0)
4.0.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.1.0
2.0.0
1.0.1
1.0.0
0.4.0
0.3.0
0.2.0
0.1.0
Middleware to destroy caching
github.com/helmetjs/nocache
helmetjs/nocache
nocache
/
index.d.ts
6 lines
(3 loc)
•
177 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
IncomingMessage
,
ServerResponse
}
from
"http"
;
declare
const
nocache
:
() =>
(
_req
:
IncomingMessage
,
res
:
ServerResponse
,
next
: () =>
void
) =>
void
;
export
= nocache;