summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/socks/typings/common/util.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/node_modules/socks/typings/common/util.d.ts')
-rw-r--r--deps/node/deps/npm/node_modules/socks/typings/common/util.d.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/deps/node/deps/npm/node_modules/socks/typings/common/util.d.ts b/deps/node/deps/npm/node_modules/socks/typings/common/util.d.ts
deleted file mode 100644
index 14f658e2..00000000
--- a/deps/node/deps/npm/node_modules/socks/typings/common/util.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-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: any[]): void;
-export { SocksClientError, shuffleArray };