mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-18 12:34:25 +08:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
// shims-vue.d.ts
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
const component: DefineComponent<
|
|
Record<string, unknown>,
|
|
Record<string, unknown>,
|
|
any
|
|
>
|
|
export default component
|
|
}
|