mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 14:39:34 +02:00
17 lines
458 B
TypeScript
17 lines
458 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'reverse',
|
|
icon: 'material-symbols-light:swap-horiz',
|
|
|
|
keywords: ['reverse'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:reverse.title',
|
|
description: 'string:reverse.description',
|
|
shortDescription: 'string:reverse.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
}
|
|
});
|