nova-admin/src/typings/global.d.ts
2024-04-06 00:55:19 +08:00

51 lines
1.1 KiB
TypeScript

interface Window {
$loadingBar: import('naive-ui').LoadingBarApi
$dialog: import('naive-ui').DialogApi
$message: import('naive-ui').MessageApi
$notification: import('naive-ui').NotificationApi
}
declare const AMap: any
declare const BMap: any
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent
export default component
}
declare namespace NaiveUI {
type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning'
}
declare module '~icons/*' {
import type { FunctionalComponent, SVGAttributes } from 'vue'
const component: FunctionalComponent<SVGAttributes>
export default component
}
declare namespace Storage {
interface Session {
demoKey: string
}
interface Local {
/* 存储用户信息 */
userInfo: ApiAuth.loginInfo
/* 存储访问token */
accessToken: string
/* 存储刷新token */
refreshToken: string
/* 存储登录账号 */
loginAccount: any
/* 存储当前语言 */
lang: App.lang
}
}
declare namespace App {
type lang = 'zhCN' | 'enUS'
}