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

actions.js 519B

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