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

13 lines
394 B
TypeScript
Raw Normal View History

2023-06-23 21:40:43 +02:00
import { AlignJustified } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'YAML to TOML',
path: '/yaml-to-toml',
description: 'Parse and convert YAML to TOML.',
keywords: ['yaml', 'to', 'toml', 'convert', 'transform'],
component: () => import('./yaml-to-toml.vue'),
icon: AlignJustified,
createdAt: new Date('2023-06-23'),
});