mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-11 18:49:53 +05:30
31 lines
595 B
TypeScript
31 lines
595 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('pdf', {
|
|
i18n: {
|
|
name: 'pdf:editor.title',
|
|
description: 'pdf:editor.description',
|
|
shortDescription: 'pdf:editor.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
},
|
|
|
|
path: 'editor',
|
|
icon: 'mdi:file-document-edit',
|
|
|
|
keywords: [
|
|
'pdf',
|
|
'editor',
|
|
'edit',
|
|
'annotate',
|
|
'highlight',
|
|
'form',
|
|
'fill',
|
|
'text',
|
|
'drawing',
|
|
'signature',
|
|
'export',
|
|
'annotation',
|
|
'markup'
|
|
],
|
|
component: lazy(() => import('./index'))
|
|
});
|