UNPKG

n8n-nodes-cisassessment

Version:

Este é um nó da comunidade n8n. Ele permite que você use o CIS Assessment em seus fluxos de trabalho n8n

13 lines (12 loc) 591 B
import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; import { getPassportOptions, getPassportReportTypeOptions } from './features/passport/passport.method'; export declare class CisAssessment implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getPassportOptions: typeof getPassportOptions; getPassportReportTypeOptions: typeof getPassportReportTypeOptions; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }