14 lines
484 B
TypeScript
14 lines
484 B
TypeScript
import { Mailbox } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.outlook_safelink_decoder.title'),
|
|
path: '/safelink-decoder',
|
|
description: translate('tools.outlook_safelink_decoder.description'),
|
|
keywords: ['outlook', 'safelink', 'decoder'],
|
|
component: () => import('./safelink-decoder.vue'),
|
|
icon: Mailbox,
|
|
createdAt: new Date('2024-03-11'),
|
|
});
|