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

actions.js 470B

12345678910111213141516171819
  1. // @flow
  2. import { SET_SCREEN_AUDIO_SHARE_STATE } from './actionTypes';
  3. /**
  4. * Updates the current known status of the shared video.
  5. *
  6. * @param {boolean} isSharingAudio - Is audio currently being shared or not.
  7. * @returns {{
  8. * type: SET_SCREEN_AUDIO_SHARE_STATE,
  9. * isSharingAudio: boolean
  10. * }}
  11. */
  12. export function setScreenAudioShareState(isSharingAudio: boolean) {
  13. return {
  14. type: SET_SCREEN_AUDIO_SHARE_STATE,
  15. isSharingAudio
  16. };
  17. }