mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-17 17:56:38 +00:00
18 lines
462 B
TypeScript
18 lines
462 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: ['General Users']
|
|
}
|
|
});
|