mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-15 12:28:33 +05:30
13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('list', {
|
|
name: 'Truncate',
|
|
path: 'truncate',
|
|
// image,
|
|
description: '',
|
|
shortDescription: '',
|
|
keywords: ['truncate'],
|
|
component: lazy(() => import('./index'))
|
|
});
|