info.ts 570 B

12345678910111213141516171819202122
  1. import { IChatOfflinePushInfo, ICallOfflinePushInfo } from './interface';
  2. export const chatOfflinePushInfo: IChatOfflinePushInfo = {
  3. androidInfo: {
  4. sound: 'private_ring.mp3',
  5. XiaoMiChannelID: 'high_custom_1',
  6. OPPOChannelID: 'tuikit',
  7. },
  8. apnsInfo: {
  9. sound: '01.caf',
  10. image: 'https://web.sdk.qcloud.com/im/demo/latest/faviconnew.png',
  11. },
  12. };
  13. export const callOfflinePushInfo: ICallOfflinePushInfo = {
  14. title: 'call',
  15. description: 'you have a call',
  16. androidSound: 'private_ring',
  17. androidOPPOChannelID: 'tuikit',
  18. iOSSound: '01.caf',
  19. };