mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-10 18:44:11 -06:00
17 lines
528 B
TypeScript
17 lines
528 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'remove-duplicate-lines',
|
|
icon: 'pepicons-print:duplicate-off',
|
|
|
|
keywords: ['remove', 'duplicate', 'lines'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:removeDuplicateLines.title',
|
|
description: 'string:removeDuplicateLines.description',
|
|
shortDescription: 'string:removeDuplicateLines.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
}
|
|
});
|