aboutsummaryrefslogtreecommitdiff
path: root/src/tools/text-statistics/index.ts
blob: 0e54b71b0b23375ebb1bc3d087b56192b58f1bbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { FileText } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Text statistics',
  path: '/text-statistics',
  description: 'Get information about a text, the amount of characters, the amount of words, it\'s size, ...',
  keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'],
  component: () => import('./text-statistics.vue'),
  icon: FileText,
  redirectFrom: ['/text-stats'],
});