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