We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9512a72 commit 863f028Copy full SHA for 863f028
test/unit/cmap/connection.test.ts
@@ -1,6 +1,5 @@
1
import { expect } from 'chai';
2
import { EventEmitter, once } from 'events';
3
-import { Server } from 'http';
4
import { Socket } from 'net';
5
import * as sinon from 'sinon';
6
import { Readable } from 'stream';
@@ -88,16 +87,6 @@ class InputStream extends Readable {
88
87
}
89
90
91
- write(
92
- chunk: any,
93
- encoding?: BufferEncoding | undefined,
94
- cb?: ((error: Error | null | undefined) => void) | undefined
95
- ): boolean;
96
- write(chunk: any, cb?: ((error: Error | null | undefined) => void) | undefined): boolean;
97
- write(chunk: unknown, encoding?: unknown, cb?: unknown): boolean {
98
- this.push;
99
- }
100
-
101
setTimeout(timeout) {
102
this.timeout = timeout;
103
0 commit comments