您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

actions.ts 405B

1234567891011121314151617
  1. import { SET_LAST_N } from './actionTypes';
  2. /**
  3. * Sets the last-n, i.e., the number of remote videos to be requested from the bridge for the conference.
  4. *
  5. * @param {number} lastN - The number of remote videos to be requested.
  6. * @returns {{
  7. * type: SET_LAST_N,
  8. * lastN: number
  9. * }}
  10. */
  11. export function setLastN(lastN: number) {
  12. return {
  13. type: SET_LAST_N,
  14. lastN
  15. };
  16. }