it-tools/src/tools/json-to-toml/index.ts

14 lines
465 B
TypeScript
Raw Normal View History

2023-06-23 21:40:30 +02:00
import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2023-06-23 21:40:30 +02:00
export const tool = defineTool({
name: translate('tools.json-to-toml.title'),
2023-06-23 21:40:30 +02:00
path: '/json-to-toml',
description: translate('tools.json-to-toml.description'),
2023-06-23 21:40:30 +02:00
keywords: ['json', 'parse', 'toml', 'convert', 'transform'],
component: () => import('./json-to-toml.vue'),
icon: Braces,
createdAt: new Date('2023-06-23'),
});