mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-12 19:12:37 +05:30
16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('list', {
|
|
path: 'reverse',
|
|
icon: 'proicons:reverse',
|
|
keywords: ['reverse'],
|
|
i18n: {
|
|
name: 'list:reverse.title',
|
|
description: 'list:reverse.description',
|
|
shortDescription: 'list:reverse.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
},
|
|
component: lazy(() => import('./index'))
|
|
});
|