Files
jitsi-meet/react/features/base/lastn/actions.ts
2022-09-23 11:13:32 +03:00

18 lines
405 B
TypeScript

import { SET_LAST_N } from './actionTypes';
/**
* Sets the last-n, i.e., the number of remote videos to be requested from the bridge for the conference.
*
* @param {number} lastN - The number of remote videos to be requested.
* @returns {{
* type: SET_LAST_N,
* lastN: number
* }}
*/
export function setLastN(lastN: number) {
return {
type: SET_LAST_N,
lastN
};
}