2025-05-24 02:50:38 +02:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('csv', {
|
2025-07-14 13:55:01 +01:00
|
|
|
i18n: {
|
|
|
|
|
name: 'csv:insertCsvColumns.title',
|
|
|
|
|
description: 'csv:insertCsvColumns.description',
|
2025-07-22 19:09:41 +01:00
|
|
|
shortDescription: 'csv:insertCsvColumns.shortDescription'
|
2025-07-14 13:55:01 +01:00
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-05-24 02:50:38 +02:00
|
|
|
path: 'insert-csv-columns',
|
|
|
|
|
icon: 'hugeicons:column-insert',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-05-24 02:50:38 +02:00
|
|
|
keywords: ['insert', 'csv', 'columns', 'append', 'prepend'],
|
|
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|