mirror of
				https://github.com/pure-admin/vue-pure-admin.git
				synced 2025-11-03 13:44:47 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			520 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			520 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import type Vue, { type VNode } from "vue";
 | 
						|
 | 
						|
declare module "*.tsx" {
 | 
						|
  import Vue from "compatible-vue";
 | 
						|
  export default Vue;
 | 
						|
}
 | 
						|
 | 
						|
declare global {
 | 
						|
  namespace JSX {
 | 
						|
    // eslint-disable-next-line
 | 
						|
    interface Element extends VNode {}
 | 
						|
    // eslint-disable-next-line
 | 
						|
    interface ElementClass extends Vue {}
 | 
						|
    interface ElementAttributesProperty {
 | 
						|
      $props: any;
 | 
						|
    }
 | 
						|
    interface IntrinsicElements {
 | 
						|
      [elem: string]: any;
 | 
						|
    }
 | 
						|
    interface IntrinsicAttributes {
 | 
						|
      [elem: string]: any;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |