n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 460 B
TypeScript
import { ExecutionsConfig } from '@n8n/config';
import type { BreakingChangeRuleMetadata, IBreakingChangeInstanceRule, InstanceDetectionReport } from '../../types';
export declare class OffloadManualExecutionsRule implements IBreakingChangeInstanceRule {
private readonly executionsConfig;
constructor(executionsConfig: ExecutionsConfig);
id: string;
getMetadata(): BreakingChangeRuleMetadata;
detect(): Promise<InstanceDetectionReport>;
}