mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-07 09:24:55 +05:30
32 lines
585 B
TypeScript
32 lines
585 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('pdf', {
|
|
i18n: {
|
|
name: 'pdf:convertToPdf.title',
|
|
description: 'pdf:convertToPdf.description',
|
|
shortDescription: 'pdf:convertToPdf.shortDescription'
|
|
},
|
|
|
|
path: 'convert-to-pdf',
|
|
icon: 'ph:file-pdf-thin',
|
|
|
|
keywords: [
|
|
'convert',
|
|
'pdf',
|
|
'image',
|
|
'jpg',
|
|
'jpeg',
|
|
'png',
|
|
'gif',
|
|
'tiff',
|
|
'webp',
|
|
'heic',
|
|
'raw',
|
|
'psd',
|
|
'svg',
|
|
'quality',
|
|
'compression'
|
|
],
|
|
component: lazy(() => import('./index'))
|
|
});
|