16 lines
313 B
TypeScript
16 lines
313 B
TypeScript
|
|
import type { HTMLAttributes } from 'vue'
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
interface IntrinsicElements {
|
|
[elemName: string]: HTMLAttributes
|
|
}
|
|
}
|
|
}
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
} |