14 lines
		
	
	
		
			477 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			477 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { IconFileDiff } from '@tabler/icons-vue';
 | |
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.text-diff.title'),
 | |
|   path: '/text-diff',
 | |
|   description: translate('tools.text-diff.description'),
 | |
|   keywords: ['text', 'diff', 'compare', 'string', 'text diff', 'code'],
 | |
|   component: () => import('./text-diff.vue'),
 | |
|   icon: IconFileDiff,
 | |
|   createdAt: new Date('2023-08-16'),
 | |
| });
 |