global.d.ts 401 B

123456789101112131415161718192021222324
  1. declare const __UNI_PLATFORM__:
  2. | 'h5'
  3. | 'app'
  4. | 'mp-alipay'
  5. | 'mp-baidu'
  6. | 'mp-jd'
  7. | 'mp-kuaishou'
  8. | 'mp-lark'
  9. | 'mp-qq'
  10. | 'mp-toutiao'
  11. | 'mp-weixin'
  12. | 'quickapp-webview'
  13. | 'quickapp-webview-huawei'
  14. | 'quickapp-webview-union'
  15. declare const __VITE_APP_PROXY__: 'true' | 'false'
  16. declare namespace JSX {
  17. interface IntrinsicElements {
  18. template: any
  19. block: any
  20. }
  21. }