7 lines
		
	
	
		
			169 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			169 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /* eslint-disable */
 | |
| declare module "*.vue" {
 | |
| 	import { defineComponent } from "vue";
 | |
| 	const component: ReturnType<typeof defineComponent>;
 | |
| 	export default component;
 | |
| }
 | 
