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

actions.ts 541B

12345678910111213141516171819
  1. import { SET_NOISY_AUDIO_INPUT_NOTIFICATION_UID } from './actionTypes';
  2. /**
  3. * Sets UID of the the pending notification to use it when hiding
  4. * the notification is necessary, or unset it when undefined (or no param) is
  5. * passed.
  6. *
  7. * @param {?number} uid - The UID of the notification.
  8. * @returns {{
  9. * type: SET_NOISY_AUDIO_INPUT_NOTIFICATION_UID,
  10. * uid: number
  11. * }}
  12. */
  13. export function setNoisyAudioInputNotificationUid(uid?: string) {
  14. return {
  15. type: SET_NOISY_AUDIO_INPUT_NOTIFICATION_UID,
  16. uid
  17. };
  18. }