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

selectors.ts 307B

12345678910111213
  1. import { IReduxState } from '../../app/types';
  2. import { STORE_NAME } from './constants';
  3. /**
  4. * A selector for the internet online status.
  5. *
  6. * @param {IReduxState} state - The redux state.
  7. * @returns {boolean}
  8. */
  9. export function isOnline(state: IReduxState) {
  10. return state[STORE_NAME].isOnline;
  11. }