mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
14 lines
409 B
TypeScript
14 lines
409 B
TypeScript
![]() |
import { defineTool } from '../tool';
|
||
|
|
||
|
import BracketIcon from '~icons/mdi/code-brackets';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'TOML to JSON',
|
||
|
path: '/toml-to-json',
|
||
|
description: 'Parse and convert TOML to JSON.',
|
||
|
keywords: ['toml', 'json', 'convert', 'online', 'transform', 'parser'],
|
||
|
component: () => import('./toml-to-json.vue'),
|
||
|
icon: BracketIcon,
|
||
|
createdAt: new Date('2023-06-23'),
|
||
|
});
|