UNPKG

n8n-nodes-tweetnacl

Version:

An n8n node to use TweetNaCl for encryption and descryption

7 lines (6 loc) 296 B
import { IExecuteFunctions } from "n8n-core"; import { INodeExecutionData, INodeType, INodeTypeDescription } from "n8n-workflow"; export declare class TweetNacl implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }