node-ejs-renderer/node_modules/socks/typings/common/util.d.ts

15 lines
484 B
TypeScript
Raw Normal View History

2024-06-09 13:55:01 -04:00
import { SocksClientOptions, SocksClientChainOptions } from './constants';
/**
* Error wrapper for SocksClient
*/
declare class SocksClientError extends Error {
options: SocksClientOptions | SocksClientChainOptions;
constructor(message: string, options: SocksClientOptions | SocksClientChainOptions);
}
/**
* Shuffles a given array.
* @param array The array to shuffle.
*/
declare function shuffleArray(array: unknown[]): void;
export { SocksClientError, shuffleArray };