UNPKG

n8n

Version:

n8n Workflow Automation Tool

7 lines (6 loc) 291 B
import type { IWorkflowBase } from 'n8n-workflow'; import type { RiskReporter, Risk } from '../../security-audit/types'; export declare class DatabaseRiskReporter implements RiskReporter { report(workflows: IWorkflowBase[]): Promise<Risk.StandardReport | null>; private getIssues; }