mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 03:49:07 +00:00
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
declare module "*.vue" {
|
|
import { defineComponent } from "vue";
|
|
|
|
const Component: ReturnType<typeof defineComponent>;
|
|
export default Component;
|
|
}
|