mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	 a8cb502824
			
		
	
	
		a8cb502824
		
			
		
	
	
	
	
		
			
			* Update Yarn to v4.0.0 Signed-off-by: Sora Morimoto <sora@morimoto.io> * `yarn format` Signed-off-by: Sora Morimoto <sora@morimoto.io> --------- Signed-off-by: Sora Morimoto <sora@morimoto.io>
		
			
				
	
	
		
			21 lines
		
	
	
		
			360 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			360 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;
 | |
|         promoteEE: boolean;
 | |
|       };
 | |
|     };
 | |
|   }
 | |
| }
 |