mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-11 18:49:53 +05:30
16 lines
466 B
TypeScript
16 lines
466 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('list', {
|
|
path: 'find-unique',
|
|
icon: 'material-symbols-light:search',
|
|
|
|
keywords: ['find', 'unique'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'list:findUnique.title',
|
|
description: 'list:findUnique.description',
|
|
shortDescription: 'list:findUnique.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
}
|
|
});
|