mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
19 lines
486 B
TypeScript
19 lines
486 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
i18n: {
|
|
name: 'string:textReplacer.title',
|
|
description: 'string:textReplacer.description',
|
|
shortDescription: 'string:textReplacer.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
},
|
|
|
|
path: 'replacer',
|
|
|
|
icon: 'material-symbols-light:find-replace',
|
|
|
|
keywords: ['text', 'replace'],
|
|
component: lazy(() => import('./index'))
|
|
});
|