mirror of
				https://github.com/CorentinTh/it-tools.git
				synced 2025-11-04 05:53:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			298 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			298 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/// <reference types="vite/client" />
 | 
						|
/// <reference types="vite-svg-loader" />
 | 
						|
 | 
						|
interface ImportMetaEnv {
 | 
						|
    VITE_PLAUSIBLE_API_HOST: string;
 | 
						|
    VITE_PLAUSIBLE_DOMAIN: string;
 | 
						|
    PACKAGE_VERSION: string;
 | 
						|
    PROD: boolean;
 | 
						|
  }
 | 
						|
  
 | 
						|
  interface ImportMeta {
 | 
						|
    readonly env: ImportMetaEnv;
 | 
						|
  }
 | 
						|
  
 |