mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 05:59:34 +02:00
18 lines
470 B
TypeScript
18 lines
470 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('csv', {
|
|
i18n: {
|
|
name: 'csv:transposeCsv.title',
|
|
description: 'csv:transposeCsv.description',
|
|
shortDescription: 'csv:transposeCsv.shortDescription',
|
|
longDescription: 'csv:transposeCsv.longDescription'
|
|
},
|
|
|
|
path: 'transpose-csv',
|
|
icon: 'carbon:transpose',
|
|
|
|
keywords: ['transpose', 'csv'],
|
|
component: lazy(() => import('./index'))
|
|
});
|