Export interface

This commit is contained in:
Yitzchok Gottlieb
2017-11-29 16:41:04 -05:00
parent 847d1575c2
commit fa7f52df8b
+1 -1
View File
@@ -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;