選択できるのは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. }