mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
13 lines
386 B
TypeScript
13 lines
386 B
TypeScript
![]() |
import { Mailbox } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Outlook Safelink decoder',
|
||
|
path: '/safelink-decoder',
|
||
|
description: 'Decode Outlook SafeLink links',
|
||
|
keywords: ['outlook', 'safelink', 'decoder'],
|
||
|
component: () => import('./safelink-decoder.vue'),
|
||
|
icon: Mailbox,
|
||
|
createdAt: new Date('2024-03-11'),
|
||
|
});
|