mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-03 00:02:28 +08:00
7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
const component: DefineComponent<{}, {}, unknown>
|
|
export default component
|
|
}
|