mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	* Fix fix labeler config (#8) * fix vue import error --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			169 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			169 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/* eslint-disable */
 | 
						|
declare module "*.vue" {
 | 
						|
	import { defineComponent } from "vue";
 | 
						|
	const component: ReturnType<typeof defineComponent>;
 | 
						|
	export default component;
 | 
						|
}
 |