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

13 lines
378 B
TypeScript
Raw Normal View History

2023-06-18 17:57:18 +02:00
import { List } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'JSON to CSV',
path: '/json-to-csv',
description: 'Convert JSON to CSV with automatic header detection.',
keywords: ['json', 'to', 'csv', 'convert'],
component: () => import('./json-to-csv.vue'),
icon: List,
createdAt: new Date('2023-06-18'),
});