mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 09:20:22 +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
|
|
}
|