mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-14 03:48:34 +05:30
25 lines
691 B
TypeScript
25 lines
691 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
i18n: {
|
|
name: 'string:hiddenCharacterDetector.title',
|
|
description: 'string:hiddenCharacterDetector.description',
|
|
shortDescription: 'string:hiddenCharacterDetector.shortDescription',
|
|
longDescription: 'string:hiddenCharacterDetector.longDescription',
|
|
userTypes: ['developers']
|
|
},
|
|
path: 'hidden-character-detector',
|
|
icon: 'material-symbols:visibility-off',
|
|
keywords: [
|
|
'hidden',
|
|
'character',
|
|
'detector',
|
|
'unicode',
|
|
'rtl',
|
|
'override',
|
|
'security',
|
|
'invisible'
|
|
],
|
|
component: lazy(() => import('./index'))
|
|
});
|