mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 14:39:34 +02:00
16 lines
538 B
TypeScript
16 lines
538 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('csv', {
|
|
i18n: {
|
|
name: 'csv:csvRowsToColumns.title',
|
|
description: 'csv:csvRowsToColumns.description',
|
|
shortDescription: 'csv:csvRowsToColumns.shortDescription',
|
|
longDescription: 'csv:csvRowsToColumns.longDescription'
|
|
},
|
|
path: 'csv-rows-to-columns',
|
|
icon: 'fluent:text-arrow-down-right-column-24-filled',
|
|
keywords: ['csv', 'rows', 'columns', 'transpose'],
|
|
component: lazy(() => import('./index'))
|
|
});
|