mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-04 02:20:19 +01:00
13 lines
516 B
TypeScript
13 lines
516 B
TypeScript
import GenericTool from '../components/tools/shared/GenericTool';
|
|
import { unlockPdfFormsDefinition } from './definitions/unlockPdfFormsDefinition';
|
|
import { BaseToolProps, ToolComponent } from '../types/tool';
|
|
|
|
const UnlockPdfForms = (props: BaseToolProps) => {
|
|
return <GenericTool definition={unlockPdfFormsDefinition} {...props} />;
|
|
};
|
|
|
|
// Static method to get the operation hook for automation
|
|
UnlockPdfForms.tool = () => unlockPdfFormsDefinition.useOperation;
|
|
|
|
export default UnlockPdfForms as ToolComponent;
|