teckos-client 0.3.1 → 0.3.2

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/types/index.d.ts +3 -3
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.1",
2
+ "version": "0.3.2",
3
3
  "license": "MIT",
4
4
  "main": "lib/teckos-client.js",
5
5
  "unpkg": "dist/teckos-client.js",
package/types/index.d.ts CHANGED
@@ -1,9 +1,9 @@
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
  * Expose all types
6
7
  */
7
- export * from './types';
8
- export type { ITeckosClient };
9
- export { TeckosClient, TeckosClientWithJWT };
8
+ export type { Options, OptionalOptions, Packet, SocketEvent, ITeckosClient };
9
+ export { ConnectionState, PacketType, TeckosClient, TeckosClientWithJWT };