You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions.web.ts 322B

12345678910111213
  1. import { IReduxState } from '../app/types';
  2. export * from './function.any';
  3. /**
  4. * Returns the visibility state of the gifs menu.
  5. *
  6. * @param {IReduxState} state - The state of the application.
  7. * @returns {boolean}
  8. */
  9. export function isGifsMenuOpen(state: IReduxState) {
  10. return state['features/gifs'].menuOpen;
  11. }