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

constants.js 130B

12345678
  1. // @flow
  2. export const CONNECTION_TYPE = {
  3. GOOD: 'good',
  4. NON_OPTIMAL: 'nonOptimal',
  5. NONE: 'none',
  6. POOR: 'poor'
  7. };