mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2025-12-07 08:53:00 +00:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
|
|
/* eslint-disable */
|
||
|
|
declare module '*.vue' {
|
||
|
|
import type { DefineComponent } from 'vue'
|
||
|
|
const component: DefineComponent<{}, {}, any>
|
||
|
|
export default component
|
||
|
|
}
|