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

sounds.js 330B

123456789101112131415
  1. // @flow
  2. /**
  3. * The name of the bundled audio file which will be played when e2ee is disabled.
  4. *
  5. * @type {string}
  6. */
  7. export const E2EE_OFF_SOUND_FILE = 'e2eeOff.mp3';
  8. /**
  9. * The name of the bundled audio file which will be played when e2ee is enabled.
  10. *
  11. * @type {string}
  12. */
  13. export const E2EE_ON_SOUND_FILE = 'e2eeOn.mp3';