mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 14:09:31 +02:00
18 lines
464 B
TypeScript
18 lines
464 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('csv', {
|
|
i18n: {
|
|
name: 'csv:csvToJson.title',
|
|
description: 'csv:csvToJson.description',
|
|
shortDescription: 'csv:csvToJson.shortDescription'
|
|
},
|
|
|
|
path: 'csv-to-json',
|
|
icon: 'lets-icons:json-light',
|
|
|
|
keywords: ['csv', 'json', 'convert', 'transform', 'parse'],
|
|
userTypes: ['Developers'],
|
|
component: lazy(() => import('./index'))
|
|
});
|