14 lines
		
	
	
		
			491 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			491 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| import BracketIcon from '~icons/mdi/code-brackets';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.toml-to-yaml.title'),
 | |
|   path: '/toml-to-yaml',
 | |
|   description: translate('tools.toml-to-yaml.description'),
 | |
|   keywords: ['toml', 'yaml', 'convert', 'online', 'transform', 'parse'],
 | |
|   component: () => import('./toml-to-yaml.vue'),
 | |
|   icon: BracketIcon,
 | |
|   createdAt: new Date('2023-06-23'),
 | |
| });
 |