mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
13 lines
463 B
TypeScript
13 lines
463 B
TypeScript
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'),
|
|
});
|