UNPKG

@azure/communication-react

Version:

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

14 lines 462 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { getCameras, getMicrophones } from './baseSelectors'; import { createSelector } from 'reselect'; /** * @private */ export const deviceCountSelector = createSelector([getCameras, getMicrophones], (cameras, microphones) => { return { camerasCount: cameras.length, microphonesCount: microphones.length }; }); //# sourceMappingURL=deviceCountSelector.js.map