teckos-client 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +3 -3
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.0",
2
+ "version": "0.3.1",
3
3
  "license": "MIT",
4
4
  "main": "lib/teckos-client.js",
5
5
  "unpkg": "dist/teckos-client.js",
package/src/index.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import { TeckosClientWithJWT } from './TeckosClientWithJWT'
2
2
  import { TeckosClient } from './TeckosClient'
3
3
  import { ITeckosClient } from './ITeckosClient'
4
+ import { ConnectionState, OptionalOptions, Options, Packet, PacketType, SocketEvent } from './types'
4
5
 
5
6
  /**
6
7
  * Expose all types
7
8
  */
8
- export * from './types'
9
- export type { ITeckosClient }
9
+ export type { Options, OptionalOptions, Packet, SocketEvent, ITeckosClient }
10
10
 
11
- export { TeckosClient, TeckosClientWithJWT }
11
+ export { ConnectionState, PacketType, TeckosClient, TeckosClientWithJWT }