17 lines
		
	
	
		
			294 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			294 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { Component } from 'vue';
 | |
| 
 | |
| export interface ITool {
 | |
|   name: string;
 | |
|   path: string;
 | |
|   description: string;
 | |
|   keywords: string[];
 | |
|   component: () => Promise<Component>;
 | |
|   icon: Component;
 | |
| }
 | |
| 
 | |
| export interface ToolCategory {
 | |
|   name: string;
 | |
|   icon: Component;
 | |
|   components: ITool[];
 | |
| }
 |