mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
19 lines
497 B
TypeScript
19 lines
497 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'
|
|
},
|
|
|
|
path: 'replacer',
|
|
|
|
icon: 'material-symbols-light:find-replace',
|
|
|
|
keywords: ['text', 'replace'],
|
|
userTypes: ['General Users', 'Students', 'Developers'],
|
|
component: lazy(() => import('./index'))
|
|
});
|