From fa7f52df8beaac56068b84078399df45dcc97c3f Mon Sep 17 00:00:00 2001 From: Yitzchok Gottlieb Date: Wed, 29 Nov 2017 16:41:04 -0500 Subject: [PATCH] Export interface --- types/jschannel/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/jschannel/index.d.ts b/types/jschannel/index.d.ts index 285cff37b9..42145531ea 100644 --- a/types/jschannel/index.d.ts +++ b/types/jschannel/index.d.ts @@ -8,7 +8,7 @@ export as namespace Channel; export function build(config: ChannelConfiguration): MessagingChannel; -interface MessagingChannel { +export interface MessagingChannel { unbind: (method: string, doNotPublish?: boolean) => boolean; bind: (method: string, callback?: (transaction: MessageTransaction, params: any) => void, doNotPublish?: boolean) => MessagingChannel; call: (message: Message) => void;