Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: remove remaining circular dependencies #28

Merged
merged 12 commits into from
Nov 20, 2022
Prev Previous commit
Next Next commit
Fix import
  • Loading branch information
rojvv committed Nov 20, 2022
commit 5cad36750910922415d1438a63473d06558bbb1a
2 changes: 1 addition & 1 deletion src/extensions/promised_net_sockets.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// deno-lint-ignore-file no-explicit-any
import { Buffer, Mutex, Socket, SocksClient } from "../../deps.ts";
import { Buffer, Mutex, type Socket, SocksClient } from "../../deps.ts";
import { ProxyInterface } from "../network/connection/types.ts";

const mutex = new Mutex();
Expand Down