mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-11 18:49:53 +05:30
17 lines
461 B
TypeScript
17 lines
461 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'censor',
|
|
|
|
icon: 'hugeicons:text-footnote',
|
|
|
|
keywords: ['text', 'censor', 'words', 'characters'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:censor.title',
|
|
description: 'string:censor.description',
|
|
shortDescription: 'string:censor.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|