mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
12 lines
437 B
TypeScript
12 lines
437 B
TypeScript
![]() |
import { FileText } from '@vicons/tabler';
|
||
|
import type { ITool } from './../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
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,
|
||
|
};
|