@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
17 lines (16 loc) • 449 B
TypeScript
import { z } from 'zod';
import { BaseCommand } from '../base-command';
declare const flagsSchema: z.ZodObject<{
email: z.ZodString;
}, "strip", z.ZodTypeAny, {
email: string;
}, {
email: string;
}>;
export declare class DisableMFACommand extends BaseCommand<z.infer<typeof flagsSchema>> {
run(): Promise<void>;
catch(error: Error): Promise<void>;
private reportSuccess;
private reportUserDoesNotExistError;
}
export {};