123456789101112131415161718192021 |
- // @flow
-
- import { SET_NO_AUDIO_SIGNAL_NOTI_UID } from './actionTypes';
-
- /**
- * Sets UID of the the pending notification to use it when hiding
- * the notification is necessary, or unset it when undefined (or no param) is
- * passed.
- *
- * @param {?number} uid - The UID of the notification.
- * @returns {{
- * type: SET_NO_AUDIO_SIGNAL_NOTI_UID,
- * uid: number
- * }}
- */
- export function setNoAudioSignalNotificationUid(uid: ?number) {
- return {
- type: SET_NO_AUDIO_SIGNAL_NOTI_UID,
- uid
- };
- }
|