dtp-tripwire-agent
Version:
A service for protecting your node against malicious attacks and scans.
22 lines (18 loc) • 412 B
TypeScript
// types/express.d.ts
// Copyright (C) 2025 DTP Technologies, LLC
// All Rights Reserved
declare global {
namespace Express {
interface Locals {
// define custom locals properties here
}
interface Request {
// define custom request properties here
}
// req.params
interface ParamsDictionary {
[key: string]: unknown;
// add custom parameters here
}
}
}