n8n
Version:
n8n Workflow Automation Tool
24 lines (23 loc) • 837 B
TypeScript
import { z } from 'zod';
import { BaseCommand } from '../base-command';
declare const flagsSchema: z.ZodObject<{
outputDir: z.ZodDefault<z.ZodString>;
includeExecutionHistoryDataTables: z.ZodDefault<z.ZodBoolean>;
includeDataTableRows: z.ZodDefault<z.ZodBoolean>;
keyFile: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
includeDataTableRows: boolean;
outputDir: string;
includeExecutionHistoryDataTables: boolean;
keyFile?: string | undefined;
}, {
includeDataTableRows?: boolean | undefined;
outputDir?: string | undefined;
includeExecutionHistoryDataTables?: boolean | undefined;
keyFile?: string | undefined;
}>;
export declare class ExportEntitiesCommand extends BaseCommand<z.infer<typeof flagsSchema>> {
run(): Promise<void>;
catch(error: Error): void;
}
export {};