UNPKG

@hadesz/monitor

Version:

A complete server monitoring system with agents, server and dashboard

15 lines (14 loc) 484 B
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 };