n8n
Version:
n8n Workflow Automation Tool
21 lines (20 loc) • 623 B
TypeScript
import { z } from 'zod';
import { BaseCommand } from '../base-command';
declare const flagsSchema: z.ZodObject<{
active: z.ZodOptional<z.ZodString>;
all: z.ZodOptional<z.ZodBoolean>;
id: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
all?: boolean | undefined;
id?: string | undefined;
active?: string | undefined;
}, {
all?: boolean | undefined;
id?: string | undefined;
active?: string | undefined;
}>;
export declare class UpdateWorkflowCommand extends BaseCommand<z.infer<typeof flagsSchema>> {
run(): Promise<void>;
catch(error: Error): Promise<void>;
}
export {};