mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 06:29:32 +02:00
18 lines
457 B
TypeScript
18 lines
457 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('csv', {
|
|
i18n: {
|
|
name: 'csv:csvToYaml.title',
|
|
description: 'csv:csvToYaml.description',
|
|
shortDescription: 'csv:csvToYaml.shortDescription',
|
|
longDescription: 'csv:csvToYaml.longDescription'
|
|
},
|
|
|
|
path: 'csv-to-yaml',
|
|
icon: 'nonicons:yaml-16',
|
|
keywords: ['csv', 'to', 'yaml'],
|
|
|
|
component: lazy(() => import('./index'))
|
|
});
|