2025-03-10 13:09:22 +03:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
|
|
|
|
path: 'truncate',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols-light:content-cut',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-12 23:02:35 -07:00
|
|
|
keywords: ['truncate'],
|
|
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'string:truncate.title',
|
|
|
|
|
description: 'string:truncate.description',
|
2025-07-18 14:45:15 -07:00
|
|
|
shortDescription: 'string:truncate.shortDescription',
|
2025-07-22 19:47:09 +01:00
|
|
|
userTypes: ['generalUsers', 'developers']
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2025-03-10 13:09:22 +03:00
|
|
|
});
|