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.

9 lines (8 loc) 322 B
import { FetchListsAPI, FetchListsAPIResponse } from "./FetchListsAPI"; import type { Token } from "./Token"; export declare class FetchListsAPINodeHTTP implements FetchListsAPI { private baseUrl; constructor(baseUrl?: URL); getLists(token: Token): Promise<FetchListsAPIResponse>; private toAPIResponse; }