it-tools/src/tools/json-to-ts/index.ts

14 lines
463 B
TypeScript
Raw Normal View History

2024-04-25 15:56:48 +08:00
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,
2024-04-25 16:18:56 +08:00
createdAt: new Date('2024-04-25'),
2024-04-25 15:56:48 +08:00
});