Files
omni-tools/src/pages/tools/csv/csv-to-yaml/meta.ts

18 lines
457 B
TypeScript
Raw Normal View History

2025-04-05 03:54:57 +02:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('csv', {
2025-07-14 13:55:01 +01:00
i18n: {
name: 'csv:csvToYaml.title',
description: 'csv:csvToYaml.description',
shortDescription: 'csv:csvToYaml.shortDescription',
longDescription: 'csv:csvToYaml.longDescription'
},
2025-07-14 18:04:30 +01:00
2025-04-05 03:54:57 +02:00
path: 'csv-to-yaml',
icon: 'nonicons:yaml-16',
keywords: ['csv', 'to', 'yaml'],
2025-07-14 18:04:30 +01:00
2025-04-05 03:54:57 +02:00
component: lazy(() => import('./index'))
});