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