Files
omni-tools/src/pages/tools/json/escape-json/meta.ts

16 lines
435 B
TypeScript
Raw Normal View History

2025-03-29 18:01:50 +05:30
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('json', {
path: 'escape-json',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols:code',
2025-07-14 18:04:30 +01:00
2025-07-12 23:02:35 -07:00
keywords: ['json', 'escape', 'characters', 'format'],
component: lazy(() => import('./index')),
i18n: {
2025-07-13 11:25:05 +01:00
name: 'json:escapeJson.title',
description: 'json:escapeJson.description',
shortDescription: 'json:escapeJson.shortDescription'
2025-07-12 23:02:35 -07:00
}
2025-03-29 18:01:50 +05:30
});