15 lines
426 B
TypeScript
Raw Normal View History

2025-11-05 15:12:58 +09:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
i18n: {
name: 'string:unicode.title',
description: 'string:unicode.description',
2025-11-30 17:57:48 +01:00
shortDescription: 'string:unicode.shortDescription'
2025-11-05 15:12:58 +09:00
},
path: 'unicode',
icon: 'mdi:unicode',
2025-11-30 17:57:48 +01:00
keywords: ['unicode', 'encode', 'decode', 'escape', 'text'],
2025-11-05 15:12:58 +09:00
component: lazy(() => import('./index'))
});