From eb5f95975b78f7a31c3bf1867ff20a7577d7bfba Mon Sep 17 00:00:00 2001 From: Nicolas Dextraze Date: Mon, 21 Nov 2016 15:56:04 -0800 Subject: [PATCH] Fixing EventAppeared callback definition for TypeScript --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 9d35295..2d0fe1c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -167,7 +167,7 @@ export interface RawStreamMetadataResult { // Callbacks export interface EventAppearedCallback { - (subscription: TSubscription, event: EventData): void; + (subscription: TSubscription, event: ResolvedEvent): void; } export interface LiveProcessingStartedCallback {