mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-10 18:19:52 +05:30
16 lines
485 B
TypeScript
16 lines
485 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'uppercase',
|
|
icon: 'material-symbols-light:format-textdirection-l-to-r',
|
|
|
|
keywords: ['uppercase'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:uppercase.title',
|
|
description: 'string:uppercase.description',
|
|
shortDescription: 'string:uppercase.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
}
|
|
});
|