@feathersjs/primus-client
Advanced tools
Comparing version 4.0.0-pre.1 to 4.0.0-pre.2
@@ -6,2 +6,13 @@ # Change Log | ||
# [4.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.1...v4.0.0-pre.2) (2019-05-15) | ||
### Bug Fixes | ||
* Use `export =` in TypeScript definitions ([#1285](https://github.com/feathersjs/feathers/issues/1285)) ([12d0f4b](https://github.com/feathersjs/feathers/commit/12d0f4b)) | ||
# [4.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.0...v4.0.0-pre.1) (2019-05-08) | ||
@@ -8,0 +19,0 @@ |
@@ -1,12 +0,17 @@ | ||
// Type definitions for @feathersjs/primus-client 1.0 | ||
// Project: https://feathersjs.com | ||
// Definitions by: Jan Lohage <https://github.com/j2L4e> | ||
// Definitions: https://github.com/feathersjs-ecosystem/feathers-typescript | ||
// TypeScript Version: 2.3 | ||
// Primus removed its typings from the repo | ||
// https://github.com/primus/primus/pull/623, as of 01/2018 there are none on | ||
// DefinitelyTyped. | ||
// primus removed its typings from the repo https://github.com/primus/primus/pull/623, as of 01/2018 there are none on DT | ||
export default function feathersPrimusClient (socket: any, options?: FeathersPrimusClientOptions): () => void; | ||
declare const primusClient: FeathersPrimusClient; | ||
export = primusClient; | ||
export interface FeathersPrimusClientOptions { | ||
timeout?: number; | ||
interface FeathersPrimusClient { | ||
(socket: any, options?: primusClient.Options): () => void; | ||
default: FeathersPrimusClient; | ||
} | ||
declare namespace primusClient { | ||
interface Options { | ||
timeout?: number; | ||
} | ||
} |
{ | ||
"name": "@feathersjs/primus-client", | ||
"description": "Client services for Primus and feathers-primus", | ||
"version": "4.0.0-pre.1", | ||
"version": "4.0.0-pre.2", | ||
"homepage": "https://feathersjs.com", | ||
@@ -39,9 +39,9 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@feathersjs/transport-commons": "^4.0.0-pre.1" | ||
"@feathersjs/transport-commons": "^4.0.0-pre.2" | ||
}, | ||
"devDependencies": { | ||
"@feathersjs/commons": "^4.0.0-pre.0", | ||
"@feathersjs/feathers": "^4.0.0-pre.1", | ||
"@feathersjs/primus": "^4.0.0-pre.1", | ||
"@feathersjs/tests": "^4.0.0-pre.1", | ||
"@feathersjs/feathers": "^4.0.0-pre.2", | ||
"@feathersjs/primus": "^4.0.0-pre.2", | ||
"@feathersjs/tests": "^4.0.0-pre.2", | ||
"chai": "^4.2.0", | ||
@@ -52,3 +52,3 @@ "feathers-memory": "^3.0.2", | ||
}, | ||
"gitHead": "e8ce9116c6a4433b64ffe400585b60a9c31ba644" | ||
"gitHead": "d665b9470435d6db0ecddd1fb152ab4a87266c52" | ||
} |
11127
39