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;
|
||
|
}
|
||
|
|