14 lines
		
	
	
		
			427 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			427 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Braces } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.json-to-xml.title'),
 | |
|   path: '/json-to-xml',
 | |
|   description: translate('tools.json-to-xml.description'),
 | |
|   keywords: ['json', 'xml'],
 | |
|   component: () => import('./json-to-xml.vue'),
 | |
|   icon: Braces,
 | |
|   createdAt: new Date('2024-08-09'),
 | |
| });
 |