mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-09 09:55:07 +05:30
18 lines
530 B
TypeScript
18 lines
530 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('pdf', {
|
|
i18n: {
|
|
name: 'pdf:rotatePdf.title',
|
|
description: 'pdf:rotatePdf.description',
|
|
shortDescription: 'pdf:rotatePdf.shortDescription',
|
|
longDescription: 'pdf:rotatePdf.longDescription',
|
|
userTypes: ['generalUsers']
|
|
},
|
|
|
|
path: 'rotate-pdf',
|
|
icon: 'carbon:rotate',
|
|
|
|
keywords: ['pdf', 'rotate', 'rotation', 'document', 'pages', 'orientation'],
|
|
component: lazy(() => import('./index'))
|
|
});
|