mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
18 lines
451 B
TypeScript
18 lines
451 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('csv', {
|
|
i18n: {
|
|
name: 'csv:csvToXml.title',
|
|
description: 'csv:csvToXml.description',
|
|
shortDescription: 'csv:csvToXml.shortDescription'
|
|
},
|
|
|
|
path: 'csv-to-xml',
|
|
icon: 'mdi-light:xml',
|
|
|
|
keywords: ['csv', 'xml', 'convert', 'transform', 'parse'],
|
|
userTypes: ['Developers'],
|
|
component: lazy(() => import('./index'))
|
|
});
|