@signalwire/core
Version:
Shared code for the SignalWire JS SDK
11 lines • 479 B
TypeScript
import { SagaIterator } from '@redux-saga/core';
import { BaseSession } from '../../../BaseSession';
import type { SessionChannel, SwEventChannel } from '../../interfaces';
type SessionSagaParams = {
session: BaseSession;
sessionChannel: SessionChannel;
swEventChannel: SwEventChannel;
};
export declare function sessionChannelWatcher({ sessionChannel, swEventChannel, session, }: SessionSagaParams): SagaIterator;
export {};
//# sourceMappingURL=sessionSaga.d.ts.map