it-tools/src/tools/json-string-converter/index.ts
2024-10-28 09:26:22 -07:00

13 lines
370 B
TypeScript

import { IconBraces } from '@tabler/icons-vue';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Json string converter',
path: '/json-string-converter',
description: '',
keywords: ['json', 'string', 'converter'],
component: () => import('./json-string-converter.vue'),
icon: IconBraces,
createdAt: new Date('2024-10-17'),
});