function.d.ts 164 B

12345678910
  1. // 全局方法
  2. declare global {
  3. interface Window {
  4. gotoScene: () => void
  5. setActiveHotId: (id: string) => void
  6. sceneBack: () => void
  7. }
  8. }
  9. export {}