BigScreenUI/env.d.ts

12 lines
365 B
TypeScript
Raw Permalink Normal View History

2023-11-30 13:40:30 +08:00
/// <reference types="vite/client" />
2023-11-30 18:37:22 +08:00
declare module "nprogress"
2023-11-30 19:45:08 +08:00
declare module "BMap"
2023-12-08 18:14:37 +08:00
declare module "BMapGL"
2023-11-30 19:45:08 +08:00
declare module '*.vue' {
import type { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}