interface IReceiver {
    subscribeWithUnsubscribe: SubscribeWithUnsubscribe;
    toSubscriptionIterator: (<T>(decoders) => Promise<IAsyncIterator<T>>);
}

Properties

subscribeWithUnsubscribe: SubscribeWithUnsubscribe
toSubscriptionIterator: (<T>(decoders) => Promise<IAsyncIterator<T>>)

Type declaration