mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-17 21:38:34 +05:30
15 lines
595 B
TypeScript
15 lines
595 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('list', {
|
|
name: 'Duplicate',
|
|
path: 'duplicate',
|
|
icon: 'mdi:content-duplicate',
|
|
description:
|
|
'A tool to duplicate each item in a list a specified number of times. Perfect for creating repeated patterns, test data, or expanding datasets.',
|
|
shortDescription: 'Repeat items in a list multiple times.',
|
|
keywords: ['duplicate'],
|
|
userTypes: ['General Users', 'Students', 'Developers'],
|
|
component: lazy(() => import('./index'))
|
|
});
|