mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
14 lines
583 B
TypeScript
14 lines
583 B
TypeScript
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
import FileCertIcon from '~icons/mdi/file-certificate-outline';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.pdf-signature-checker.title'),
|
|
path: '/pdf-signature-checker',
|
|
description: translate('tools.pdf-signature-checker.description'),
|
|
keywords: ['pdf', 'signature', 'checker', 'verify', 'validate', 'sign'],
|
|
component: () => import('./pdf-signature-checker.vue'),
|
|
icon: FileCertIcon,
|
|
createdAt: new Date('2023-12-09'),
|
|
npmPackages: ['pdf-signature-reader'],
|
|
});
|