mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
13 lines
500 B
TypeScript
13 lines
500 B
TypeScript
import { FileText } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.text-statistics.title'),
|
|
path: '/text-statistics',
|
|
description: translate('tools.text-statistics.description'),
|
|
keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'],
|
|
component: () => import('./text-statistics.vue'),
|
|
icon: FileText,
|
|
redirectFrom: ['/text-stats'],
|
|
});
|