@tableau/taco-toolkit
Version:
Tableau Connector Toolkit
12 lines (11 loc) • 317 B
TypeScript
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 {};