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