it-tools/src/tools/pdf-encrypt/index.ts

13 lines
352 B
TypeScript
Raw Normal View History

import { Lock } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Pdf Encrypt',
path: '/pdf-encrypt',
description: 'Encrypt and add protection to a PDF File',
keywords: ['pdf', 'encrypt'],
component: () => import('./pdf-encrypt.vue'),
icon: Lock,
createdAt: new Date('2024-01-09'),
});