UNPKG

@aikidosec/firewall

Version:

Zen by Aikido is an embedded Application Firewall that autonomously protects Node.js apps against common and critical attacks, provides rate limiting, detects malicious traffic (including bots), and more.

7 lines (6 loc) 481 B
import type { Agent } from "../Agent"; import { OperationKind } from "../api/Event"; import { getContext } from "../Context"; import type { InterceptorResult } from "./InterceptorResult"; import type { WrapPackageInfo } from "./WrapPackageInfo"; export declare function onInspectionInterceptorResult(context: ReturnType<typeof getContext>, agent: Agent, result: InterceptorResult, pkgInfo: WrapPackageInfo, start: number, operation: string, kind: OperationKind | undefined): void;