18 lines
462 B
TypeScript
Raw Normal View History

2025-07-08 20:44:41 +02:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
path: 'censor',
2025-07-14 18:04:30 +01:00
2025-07-08 21:01:38 +02:00
icon: 'hugeicons:text-footnote',
2025-07-14 18:04:30 +01:00
2025-07-08 20:44:41 +02:00
keywords: ['text', 'censor', 'words', 'characters'],
2025-07-12 23:02:35 -07:00
component: lazy(() => import('./index')),
i18n: {
2025-07-13 11:25:05 +01:00
name: 'string:censor.title',
description: 'string:censor.description',
shortDescription: 'string:censor.shortDescription',
2025-07-21 22:55:47 -07:00
userTypes: ['General Users']
2025-07-12 23:02:35 -07:00
}
2025-07-08 20:44:41 +02:00
});