9 lines
		
	
	
		
			162 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			162 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
declare module '*.md' {
 | 
						|
  const content: string
 | 
						|
  export default content
 | 
						|
}
 | 
						|
 | 
						|
declare module '*.hook-bundle.js' {
 | 
						|
  const content: string
 | 
						|
  export default content
 | 
						|
} |