Im即时通讯-web端代码
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.

27 lines
219B

  1. export type ISzyxPush = {
  2. /**
  3. * 初始化方法
  4. */
  5. init():void
  6. }
  7. class SzyxPushSdk implements ISzyxPush{
  8. init() {
  9. console.log('---------------------->>>');
  10. }
  11. }
  12. export default SzyxPushSdk