mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
13 lines
461 B
TypeScript
13 lines
461 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const meta = defineTool('pdf', {
|
|
name: 'Merge PDF',
|
|
shortDescription: 'Merge multiple PDF files into a single document',
|
|
description: 'Combine multiple PDF files into a single document.',
|
|
icon: 'material-symbols-light:merge',
|
|
component: lazy(() => import('./index')),
|
|
keywords: ['pdf', 'merge', 'extract', 'pages', 'combine', 'document'],
|
|
path: 'merge-pdf'
|
|
});
|