UNPKG

@aikidosec/firewall

Version:

Zen by Aikido is an embedded Web Application Firewall that autonomously protects Node.js apps against common and critical attacks

10 lines (9 loc) 395 B
import { ReportingAPI, ReportingAPIResponse } from "./ReportingAPI"; import { Event } from "./Event"; import { Token } from "./Token"; export declare class ReportingAPINodeHTTP implements ReportingAPI { private readonly reportingUrl; constructor(reportingUrl: URL); private toAPIResponse; report(token: Token, event: Event, timeoutInMS: number): Promise<ReportingAPIResponse>; }