2025-09-05 17:03:56 +08:00
|
|
|
|
|
|
|
|
import type { HTMLAttributes } from 'vue'
|
|
|
|
|
|
|
|
|
|
declare global {
|
|
|
|
|
namespace JSX {
|
|
|
|
|
interface IntrinsicElements {
|
|
|
|
|
[elemName: string]: HTMLAttributes
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-22 19:48:04 +08:00
|
|
|
declare module '*.vue' {
|
2025-09-05 17:03:56 +08:00
|
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
|
const component: DefineComponent<{}, {}, any>
|
|
|
|
|
export default component
|
2025-08-22 19:48:04 +08:00
|
|
|
}
|