it-tools/src/tools/text-statistics/index.ts

13 lines
474 B
TypeScript
Raw Normal View History

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