UNPKG

@tableau/taco-toolkit

Version:
12 lines (11 loc) 317 B
import { NetworkProtocol } from './types'; interface NetworkRuleEngineOptions { allowLocalhost: boolean; protocols: NetworkProtocol[]; } export declare class NetworkRuleEngine { private readonly ruleList; constructor(options: NetworkRuleEngineOptions); test(urlString: string): void; } export {};