13 lines
		
	
	
		
			409 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			409 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { FileDiff } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: 'Text diff',
 | |
|   path: '/text-diff',
 | |
|   description: 'Compare two texts and see the differences between them.',
 | |
|   keywords: ['text', 'diff', 'compare', 'string', 'text diff', 'code'],
 | |
|   component: () => import('./text-diff.vue'),
 | |
|   icon: FileDiff,
 | |
|   createdAt: new Date('2023-08-16'),
 | |
| });
 |