it-tools/src/tools/ical-parser/index.ts
sharevb 6896d03a3a feat(new tools): iCal Generator/Merger/Parser
iCal file generator, merger and parser
2024-10-14 19:44:46 +02:00

12 lines
390 B
TypeScript

import { CalendarEvent } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'ICAL File Parser',
path: '/ical-parser',
description: 'Parse ICAL/ICS file to event display',
keywords: ['ical', 'ics', 'calendar', 'parser'],
component: () => import('./ical-parser.vue'),
icon: CalendarEvent,
createdAt: new Date('2024-08-15'),
});