mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
17 lines
481 B
TypeScript
17 lines
481 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('csv', {
|
|
i18n: {
|
|
name: 'csv:csvToTsv.title',
|
|
description: 'csv:csvToTsv.description',
|
|
shortDescription: 'csv:csvToTsv.shortDescription',
|
|
longDescription: 'csv:csvToTsv.longDescription'
|
|
},
|
|
|
|
path: 'csv-to-tsv',
|
|
icon: 'codicon:keyboard-tab',
|
|
keywords: ['csv', 'tsv', 'convert', 'transform', 'parse'],
|
|
component: lazy(() => import('./index'))
|
|
});
|