n8n
Version:
n8n Workflow Automation Tool
7 lines (6 loc) • 314 B
TypeScript
import type { BreakingChangeRuleMetadata, IBreakingChangeInstanceRule, InstanceDetectionReport } from '../../types';
export declare class OAuthCallbackAuthRule implements IBreakingChangeInstanceRule {
id: string;
getMetadata(): BreakingChangeRuleMetadata;
detect(): Promise<InstanceDetectionReport>;
}