function.d.ts 256 B

12345678910111213
  1. // 全局方法
  2. declare global {
  3. interface Window {
  4. WjwjScene: boolean
  5. unityLoading: (progress: number) => void
  6. showTag: () => void
  7. hideTag: () => void
  8. changePanel: (index: number) => void
  9. hideGesture: () => void
  10. }
  11. }
  12. export {}