source: trip-planner-front/node_modules/socks/typings/common/helpers.d.ts@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 625 bytes
Line 
1import { SocksClientOptions, SocksClientChainOptions } from '../client/socksclient';
2/**
3 * Validates the provided SocksClientOptions
4 * @param options { SocksClientOptions }
5 * @param acceptedCommands { string[] } A list of accepted SocksProxy commands.
6 */
7declare function validateSocksClientOptions(options: SocksClientOptions, acceptedCommands?: string[]): void;
8/**
9 * Validates the SocksClientChainOptions
10 * @param options { SocksClientChainOptions }
11 */
12declare function validateSocksClientChainOptions(options: SocksClientChainOptions): void;
13export { validateSocksClientOptions, validateSocksClientChainOptions };
Note: See TracBrowser for help on using the repository browser.