n8n-nodes-seclore/dist/nodes/SecloreProtect/SecloreProtect.node.d.ts

15 lines
499 B
TypeScript

import { INodeType, INodeTypeDescription } from 'n8n-workflow';
import { protectWithHotFolder } from './operations/protectWithHotFolder';
import { unprotect } from './operations/unprotect';
export declare class SecloreProtect implements INodeType {
description: INodeTypeDescription;
customOperations: {
drmProtection: {
protectWithHotFolder: typeof protectWithHotFolder;
};
drmUnprotection: {
unprotect: typeof unprotect;
};
};
}