mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			332 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			332 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export {};
 | |
| 
 | |
| declare global {
 | |
|   interface Window {
 | |
|     strapi: {
 | |
|       backendURL: string;
 | |
|       isEE: boolean;
 | |
|       features: {
 | |
|         SSO: 'sso';
 | |
|         isEnabled: (featureName?: string) => boolean;
 | |
|       };
 | |
|       projectType: string;
 | |
|       telemetryDisabled: boolean;
 | |
|       flags: {
 | |
|         nps: boolean;
 | |
|       };
 | |
|     };
 | |
|   }
 | |
| }
 | 
