Fix missing return value in TypeScript definition.

Published version 0.0.23
This commit is contained in:
Nicolas Dextraze 2017-01-04 08:58:00 -08:00
parent a5a9f7c1ee
commit cc0b6259d1
2 changed files with 2 additions and 2 deletions

2
index.d.ts vendored
View File

@ -173,7 +173,7 @@ export interface LiveProcessingStartedCallback {
}
export interface SubscriptionDroppedCallback<TSubscription> {
(subscription: TSubscription, reason: string, error?: Error);
(subscription: TSubscription, reason: string, error?: Error): void;
}
export interface EventStoreNodeConnection {

View File

@ -1,6 +1,6 @@
{
"name": "eventstore-node",
"version": "0.0.22",
"version": "0.0.23",
"description": "A port of the EventStore .Net ClientAPI to Node.js",
"main": "index.js",
"types": "index.d.ts",