mongo-sanitizer
Version:
An Express.js middleware to prevent NoSQL injection attacks by sanitizing req.body, req.query, and req.params. Supports custom replacement and dot notation handling
17 lines (14 loc) • 619 B
TypeScript
declare namespace Express {
interface Request {
// TypeScript'in Express Request objesine yeni özellikler eklemesini sağlar.
// Bu, paketin temizlenmiş verileri ekleyeceği yerdir.
// Allows TypeScript to add new properties to the Express Request object.
// This is where the package will attach the sanitized data.
// Ermöglicht TypeScript, dem Express Request-Objekt neue Eigenschaften hinzuzufügen.
// Hier wird das Paket die bereinigten Daten anhängen.
sanitizedBody?: any;
sanitizedQuery?: any;
sanitizedParams?: Record<string, any>;
sanitizedHeaders?: any;
}
}