mirror of
				https://github.com/SteamDeckHomebrew/decky-plugin-template.git
				synced 2025-10-30 23:02:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| declare module "*.svg" {
 | |
|   const content: string;
 | |
|   export default content;
 | |
| }
 | |
| 
 | |
| declare module "*.png" {
 | |
|   const content: string;
 | |
|   export default content;
 | |
| }
 | |
| 
 | |
| declare module "*.jpg" {
 | |
|   const content: string;
 | |
|   export default content;
 | |
| }
 |