UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 292 B
import { BlockList } from 'node:net'; export interface IpRangeIssue { entry: string; error: string; } export interface IpRangeBuildResult { list: BlockList; issues: IpRangeIssue[]; } export declare function buildIpRangeList(cidrRanges: readonly string[]): IpRangeBuildResult;