mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
13 lines
441 B
TypeScript
13 lines
441 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('json', {
|
||
|
|
name: 'Convert JSON to XML',
|
||
|
|
path: 'json-to-xml',
|
||
|
|
icon: 'mdi-light:xml',
|
||
|
|
description: 'Convert JSON files to XML format with customizable options.',
|
||
|
|
shortDescription: 'Convert JSON data to XML format',
|
||
|
|
keywords: ['json', 'xml', 'convert', 'transform', 'parse'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|