mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-09 09:55:07 +05:30
15 lines
433 B
TypeScript
15 lines
433 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('json', {
|
|
path: 'stringify',
|
|
icon: 'material-symbols:code',
|
|
|
|
keywords: ['json', 'stringify', 'serialize', 'convert'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'json:stringify.title',
|
|
description: 'json:stringify.description',
|
|
shortDescription: 'json:stringify.shortDescription'
|
|
}
|
|
});
|