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