mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:28:28 -05:00 
			
		
		
		
	* ignore unsafe html warnings * remove unused import * re-order attrs * removed unused vars/imports * removed unused import * refactored v-html * removed more unused things
		
			
				
	
	
		
			11 lines
		
	
	
		
			197 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			197 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export interface SideBarLink {
 | 
						|
  icon: string;
 | 
						|
  to?: string;
 | 
						|
  href?: string;
 | 
						|
  title: string;
 | 
						|
  children?: SideBarLink[];
 | 
						|
  restricted: boolean;
 | 
						|
}
 | 
						|
 | 
						|
export type SidebarLinks = Array<SideBarLink>;
 |