30 lines
918 B
TypeScript
30 lines
918 B
TypeScript
/* eslint-disable */
|
|
// @ts-nocheck
|
|
// biome-ignore lint: disable
|
|
// oxlint-disable
|
|
// ------
|
|
// Generated by unplugin-vue-components
|
|
// Read more: https://github.com/vuejs/core/pull/3399
|
|
import { GlobalComponents } from 'vue'
|
|
|
|
export {}
|
|
|
|
/* prettier-ignore */
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
NAvatar: typeof import('naive-ui')['NAvatar']
|
|
NDropdown: typeof import('naive-ui')['NDropdown']
|
|
NMenu: typeof import('naive-ui')['NMenu']
|
|
RouterLink: typeof import('vue-router')['RouterLink']
|
|
RouterView: typeof import('vue-router')['RouterView']
|
|
}
|
|
}
|
|
|
|
// For TSX support
|
|
declare global {
|
|
const NAvatar: typeof import('naive-ui')['NAvatar']
|
|
const NDropdown: typeof import('naive-ui')['NDropdown']
|
|
const NMenu: typeof import('naive-ui')['NMenu']
|
|
const RouterLink: typeof import('vue-router')['RouterLink']
|
|
const RouterView: typeof import('vue-router')['RouterView']
|
|
} |