shims-vue.d.ts 667 B

12345678910111213141516171819202122232425262728
  1. /* eslint-disable */
  2. declare module '*.vue' {
  3. import type { DefineComponent } from 'vue'
  4. const component: DefineComponent<{}, {}, any>
  5. export default component
  6. }
  7. declare module 'tim-profanity-filter-plugin' {
  8. import TIMProfanityFilterPlugin from 'tim-profanity-filter-plugin'
  9. export default TIMProfanityFilterPlugin
  10. }
  11. declare module 'tuicall-engine-webrtc' {
  12. import { TUICallEngine, TUICallEvent, TUICallType } from 'tuicall-engine-webrtc';
  13. export { TUICallEngine, TUICallEvent, TUICallType };
  14. }
  15. declare module '*.svg' {
  16. const content: any;
  17. export default content;
  18. }
  19. declare module '*.json' {
  20. const content: any;
  21. export default content;
  22. }