2025-11-30 17:57:48 +01:00

15 lines
426 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
i18n: {
name: 'string:unicode.title',
description: 'string:unicode.description',
shortDescription: 'string:unicode.shortDescription'
},
path: 'unicode',
icon: 'mdi:unicode',
keywords: ['unicode', 'encode', 'decode', 'escape', 'text'],
component: lazy(() => import('./index'))
});