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