it-tools/src/tools/yaml-to-toml/index.ts
2024-02-01 14:05:54 +01:00

13 lines
478 B
TypeScript

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