mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			401 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			401 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|   | export {}; | ||
|  | 
 | ||
|  | declare global { | ||
|  |   interface Window { | ||
|  |     strapi: { | ||
|  |       backendURL: string; | ||
|  |       telemetryDisabled: boolean; | ||
|  |       projectType: 'Enterprise' | 'Community'; | ||
|  |     }; | ||
|  |   } | ||
|  | } | ||
|  | 
 | ||
|  | import { StrapiTheme } from '@strapi/design-system'; | ||
|  | 
 | ||
|  | declare module 'styled-components' { | ||
|  |   // eslint-disable-next-line @typescript-eslint/no-empty-interface
 | ||
|  |   export interface DefaultTheme extends StrapiTheme {} | ||
|  | } |