advent22/ui/src/d.ts/shims-vue.d.ts

7 lines
171 B
TypeScript
Raw Normal View History

2022-10-28 00:14:20 +00:00
/* eslint-disable */
2023-09-07 01:17:14 +00:00
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
2022-10-28 00:14:20 +00:00
}