UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 525 B
import { CommunityPackagesConfig } from '../../../community-packages/community-packages.config'; import type { BreakingChangeRuleMetadata, IBreakingChangeInstanceRule, InstanceDetectionReport } from '../../types'; export declare class UnverifiedPackagesRule implements IBreakingChangeInstanceRule { private readonly communityPackagesConfig; constructor(communityPackagesConfig: CommunityPackagesConfig); id: string; getMetadata(): BreakingChangeRuleMetadata; detect(): Promise<InstanceDetectionReport>; }