mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-04 01:37:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			524 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			524 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/// <reference path="typings/styled-patch.d.ts" />
 | 
						|
 | 
						|
declare module '*.json' {
 | 
						|
  const content: any;
 | 
						|
  export = content;
 | 
						|
}
 | 
						|
 | 
						|
declare module '*.svg' {
 | 
						|
  const content: string;
 | 
						|
  export default content;
 | 
						|
}
 | 
						|
 | 
						|
declare module '*.css' {
 | 
						|
  const content: string;
 | 
						|
  export default content;
 | 
						|
}
 | 
						|
 | 
						|
declare var __REDOC_VERSION__: string;
 | 
						|
declare var __REDOC_REVISION__: string;
 | 
						|
 | 
						|
declare var reactHotLoaderGlobal: any;
 | 
						|
 | 
						|
interface Element {
 | 
						|
  scrollIntoViewIfNeeded(centerIfNeeded?: boolean): void;
 | 
						|
}
 | 
						|
 | 
						|
type GenericObject = Record<string, any>;
 |