14 lines
		
	
	
		
			357 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			357 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Braces } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: 'XML to JSON',
 | |
|   path: '/xml-to-json',
 | |
|   description: 'Convert XML to JSON',
 | |
|   keywords: ['xml', 'json'],
 | |
|   component: () => import('./xml-to-json.vue'),
 | |
|   icon: Braces,
 | |
|   createdAt: new Date('2024-08-09'),
 | |
|   category: 'Converter',
 | |
| });
 |