Skip to content

Commit

Permalink
style: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Jul 25, 2023
1 parent 247e187 commit d3019ce
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/connect/ali.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Buffer } from 'buffer'
import { Duplex, Transform } from 'readable-stream'
import { Transform } from 'readable-stream'
import duplexify, { Duplexify } from 'duplexify'
import { StreamBuilder } from '../shared'
import MqttClient, { IClientOptions } from '../client'
Expand Down
1 change: 0 additions & 1 deletion src/lib/connect/tls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import tls from 'tls'
import net from 'net'
import _debug from 'debug'
import { StreamBuilder } from '../shared'
import { Duplex } from 'readable-stream'

const debug = _debug('mqttjs:tls')

Expand Down
2 changes: 1 addition & 1 deletion src/lib/connect/ws.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Buffer } from 'buffer'
import WS, { ClientOptions } from 'ws'
import _debug from 'debug'
import duplexify from 'duplexify'
import { Duplex, DuplexOptions, Transform } from 'readable-stream'
import { DuplexOptions, Transform } from 'readable-stream'
import IS_BROWSER from '../is-browser'
import MqttClient, { IClientOptions } from '../client'

Expand Down
2 changes: 1 addition & 1 deletion src/lib/connect/wx.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { StreamBuilder } from '../shared'

import { Buffer } from 'buffer'
import { Duplex, Transform } from 'readable-stream'
import { Transform } from 'readable-stream'
import duplexify, { Duplexify } from 'duplexify'
import MqttClient, { IClientOptions } from '../client'

Expand Down

0 comments on commit d3019ce

Please sign in to comment.