Compare commits

..

No commits in common. "035be11686e8f2460bad3dcdfd3990e954127c56" and "5b87187bc064b4a8c558038e784ef59ee325041f" have entirely different histories.

2 changed files with 0 additions and 5 deletions

2
dist/socket.d.ts vendored
View File

@ -12,8 +12,6 @@ export default class Socket extends Duplex {
remotePort: any; remotePort: any;
remoteFamily: AddressFamily; remoteFamily: AddressFamily;
bufferSize: any; bufferSize: any;
readable: true;
writable: true;
constructor({ allowHalfOpen, remoteAddress, remotePort, write, }?: SocketOptions); constructor({ allowHalfOpen, remoteAddress, remotePort, write, }?: SocketOptions);
private _connecting; private _connecting;
get connecting(): boolean; get connecting(): boolean;

View File

@ -24,9 +24,6 @@ export default class Socket extends Duplex {
public bufferSize; public bufferSize;
declare readable: true;
declare writable: true;
constructor({ constructor({
allowHalfOpen = false, allowHalfOpen = false,
remoteAddress, remoteAddress,