Skip to content

Commit 175a2c5

Browse files
committedOct 19, 2024··
fix(eio-client/types): remove ws type from .d.ts file
Before this change, the following error would be thrown when compiling with TypeScript: ``` node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts:12:101 - error TS1340: Module 'ws' does not refer to a type, but is used as a type here. Did you mean 'typeof import('ws')'? 12 createSocket(uri: string, protocols: string | string[] | undefined, opts: Record<string, any>): import("ws"); ~~~~~~~~~~~~ ``` This behavior was introduced in [1], included in version `6.6.0`. The return type is forced as `any`, so that the `@types/ws` dependency is optional. [1]: f4d898e Related: #5202
1 parent 9b80ab4 commit 175a2c5

File tree

8 files changed

+115
-1
lines changed

8 files changed

+115
-1
lines changed
 

‎.github/workflows/build-examples.yml

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- custom-parsers
2020
- typescript-example/cjs
2121
- typescript-example/esm
22+
- typescript-client-example/cjs
23+
- typescript-client-example/esm
2224
- webpack-build
2325
- webpack-build-server
2426
- basic-crud-application/angular-client
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { io, type Socket } from "socket.io-client";
2+
3+
interface ServerToClientEvents {
4+
hello: (val: string) => void;
5+
}
6+
7+
interface ClientToServerEvents {
8+
ping: (cb: () => void) => void;
9+
}
10+
11+
const socket: Socket<ServerToClientEvents, ClientToServerEvents> = io("ws://localhost:8080/");
12+
13+
socket.on("connect", () => {
14+
console.log(`connect ${socket.id}`);
15+
});
16+
17+
socket.on("hello", (val) => {
18+
console.log(`got ${val}`);
19+
});
20+
21+
socket.on("disconnect", () => {
22+
console.log(`disconnect`);
23+
});
24+
25+
setInterval(() => {
26+
const start = Date.now();
27+
socket.emit("ping", () => {
28+
console.log(`pong (latency: ${Date.now() - start} ms)`);
29+
});
30+
}, 1000);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "typescript-client-example-cjs",
3+
"version": "0.0.1",
4+
"description": "An example with TypeScript",
5+
"type": "commonjs",
6+
"private": true,
7+
"scripts": {
8+
"build": "tsc",
9+
"start": "ts-node client.ts"
10+
},
11+
"license": "MIT",
12+
"dependencies": {
13+
"socket.io-client": "^4.8.0",
14+
"ts-node": "^10.9.2",
15+
"typescript": "^5.4.5"
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"outDir": "dist",
4+
"target": "es2022",
5+
"module": "nodenext",
6+
"moduleResolution": "nodenext",
7+
"strict": true
8+
}
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { io, type Socket } from "socket.io-client";
2+
3+
interface ServerToClientEvents {
4+
hello: (val: string) => void;
5+
}
6+
7+
interface ClientToServerEvents {
8+
ping: (cb: () => void) => void;
9+
}
10+
11+
const socket: Socket<ServerToClientEvents, ClientToServerEvents> = io("ws://localhost:8080/");
12+
13+
socket.on("connect", () => {
14+
console.log(`connect ${socket.id}`);
15+
});
16+
17+
socket.on("hello", (val) => {
18+
console.log(`got ${val}`);
19+
});
20+
21+
socket.on("disconnect", () => {
22+
console.log(`disconnect`);
23+
});
24+
25+
setInterval(() => {
26+
const start = Date.now();
27+
socket.emit("ping", () => {
28+
console.log(`pong (latency: ${Date.now() - start} ms)`);
29+
});
30+
}, 1000);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "typescript-client-example-esm",
3+
"version": "0.0.1",
4+
"description": "An example with TypeScript",
5+
"type": "module",
6+
"private": true,
7+
"scripts": {
8+
"build": "tsc",
9+
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm client.ts"
10+
},
11+
"license": "MIT",
12+
"dependencies": {
13+
"socket.io-client": "^4.8.0",
14+
"ts-node": "^10.9.2",
15+
"typescript": "^5.4.5"
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"outDir": "dist",
4+
"target": "es2022",
5+
"module": "esnext",
6+
"moduleResolution": "node",
7+
"strict": true
8+
}
9+
}

‎packages/engine.io-client/lib/transports/websocket.node.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class WS extends BaseWS {
1515
uri: string,
1616
protocols: string | string[] | undefined,
1717
opts: Record<string, any>,
18-
) {
18+
): any {
1919
if (this.socket?._cookieJar) {
2020
opts.headers = opts.headers || {};
2121

0 commit comments

Comments
 (0)
Please sign in to comment.