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