aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-types/tests/net.test-d.ts
blob: 76ad4b01516fe93f580cc1f5636c4ec1a876fca1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import * as net from "node:net";

const socket = net.connect({
  port: 80,
  host: "localhost",
});

socket.connect({
  port: 80,
  host: "localhost",
});