UNPKG

@azure/communication-react

Version:

React library for building modern communication user experiences utilizing Azure Communication Services

16 lines 658 B
import { CallClientState } from "../../calling-stateful-client/src"; import { IncomingCallStackCall } from "../../react-components/src"; /** * Selector to get the active and removed incoming calls. * @public */ export type IncomingCallStackSelector = (state: CallClientState) => { activeIncomingCalls: IncomingCallStackCall[]; removedIncomingCalls: IncomingCallStackCall[]; }; /** * Select the active and removed incoming calls from the stateful client for the IncomingCallNotificationStackComponent. * @public */ export declare const incomingCallStackSelector: IncomingCallStackSelector; //# sourceMappingURL=incomingCallStackSelector.d.ts.map