mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-30 17:37:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			128 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			128 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| interface Restaurant {
 | |
|   name: string;
 | |
| }
 | |
| 
 | |
| declare global {
 | |
|   interface AllTypes {
 | |
|     restaurant: Restaurant;
 | |
|   }
 | |
| }
 | |
| 
 | |
| export {};
 | 
