n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 321 B
TypeScript
import { type ClusterCheckContext, type ClusterCheckResult, type IClusterCheck } from '@n8n/decorators';
export declare class SplitBrainCheck implements IClusterCheck {
checkDescription: {
name: string;
displayName: string;
};
run(context: ClusterCheckContext): Promise<ClusterCheckResult>;
}