feat: json to typescript

This commit is contained in:
ChenZhoYu 2024-04-25 15:56:48 +08:00
parent 9eac9cb2a9
commit dd03874556
11 changed files with 7008 additions and 5266 deletions

View file

@ -0,0 +1,13 @@
import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.json-to-ts.title'),
path: '/json-to-ts',
description: translate('tools.json-to-ts.description'),
keywords: ['json', 'parse', 'typescript', 'convert', 'transform'],
component: () => import('./json-to-ts.vue'),
icon: Braces,
createdAt: new Date('2024-05-25'),
});