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