You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
625 B
13 lines
625 B
import { SocksClientOptions, SocksClientChainOptions } from '../client/socksclient'; |
|
/** |
|
* Validates the provided SocksClientOptions |
|
* @param options { SocksClientOptions } |
|
* @param acceptedCommands { string[] } A list of accepted SocksProxy commands. |
|
*/ |
|
declare function validateSocksClientOptions(options: SocksClientOptions, acceptedCommands?: string[]): void; |
|
/** |
|
* Validates the SocksClientChainOptions |
|
* @param options { SocksClientChainOptions } |
|
*/ |
|
declare function validateSocksClientChainOptions(options: SocksClientChainOptions): void; |
|
export { validateSocksClientOptions, validateSocksClientChainOptions };
|
|
|