15 lines
499 B
TypeScript
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;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|