| 1234567891011121314151617181920212223242526272829 | 
							- // @flow
 - 
 - import { HIDE_APP_SETTINGS, SHOW_APP_SETTINGS } from './actionTypes';
 - 
 - /**
 -  * Redux-signals the request to hide the app settings screen.
 -  *
 -  * @returns {{
 -  *     type: HIDE_APP_SETTINGS
 -  * }}
 -  */
 - export function hideAppSettings() {
 -     return {
 -         type: HIDE_APP_SETTINGS
 -     };
 - }
 - 
 - /**
 -  * Redux-signals the request to open the app settings screen.
 -  *
 -  * @returns {{
 -  *     type: SHOW_APP_SETTINGS
 -  * }}
 -  */
 - export function showAppSettings() {
 -     return {
 -         type: SHOW_APP_SETTINGS
 -     };
 - }
 
 
  |