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.

8 lines (7 loc) 318 B
import { FetchListsAPI, FetchListsAPIResponse } from "./FetchListsAPI"; import type { Token } from "./Token"; export declare class FetchListsAPIForTesting implements FetchListsAPI { private response; constructor(response?: FetchListsAPIResponse); getLists(_token: Token): Promise<FetchListsAPIResponse>; }