mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 01:19:33 +02:00
19 lines
621 B
TypeScript
19 lines
621 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('json', {
|
|
name: 'JSON to XML',
|
|
path: 'json-to-xml',
|
|
icon: 'material-symbols:code',
|
|
description:
|
|
'Convert JSON data to XML format. Transform structured JSON objects into well-formed XML documents.',
|
|
shortDescription: 'Convert JSON to XML format',
|
|
keywords: ['json', 'xml', 'convert', 'transform'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'json.jsonToXml.name',
|
|
description: 'json.jsonToXml.description',
|
|
shortDescription: 'json.jsonToXml.shortDescription'
|
|
}
|
|
});
|