UNPKG

@azure/communication-react

Version:

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

14 lines 526 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import * as reselect from 'reselect'; import { getLatestCapabilitiesChangedInfo, getRole } from './baseSelectors'; /** * @private */ export const capabilitiesChangedInfoAndRoleSelector = reselect.createSelector([getLatestCapabilitiesChangedInfo, getRole], (capabilitiesChangeInfo, participantRole) => { return { capabilitiesChangeInfo, participantRole }; }); //# sourceMappingURL=capabilitiesChangedInfoAndRoleSelector.js.map