* Emit custom event when theme changes * Type themechange custom event * Update darkmode docs
		
			
				
	
	
		
			13 lines
		
	
	
		
			263 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			263 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| declare module "*.scss" {
 | |
|   const content: string
 | |
|   export = content
 | |
| }
 | |
| 
 | |
| // dom custom event
 | |
| interface CustomEventMap {
 | |
|   nav: CustomEvent<{ url: FullSlug }>
 | |
|   themechange: CustomEvent<{ theme: "light" | "dark" }>
 | |
| }
 | |
| 
 | |
| declare const fetchData: Promise<ContentIndex>
 |