UNPKG

n8n

Version:

n8n Workflow Automation Tool

38 lines (37 loc) 1.25 kB
import z from 'zod'; import { BaseCommand } from '../base-command'; import '../../zod-alias-support'; declare const flagsSchema: z.ZodObject<{ all: z.ZodOptional<z.ZodBoolean>; backup: z.ZodOptional<z.ZodBoolean>; id: z.ZodOptional<z.ZodString>; projectId: z.ZodOptional<z.ZodString>; output: z.ZodOptional<z.ZodString>; pretty: z.ZodOptional<z.ZodBoolean>; separate: z.ZodOptional<z.ZodBoolean>; decrypted: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id?: string | undefined; projectId?: string | undefined; output?: string | undefined; all?: boolean | undefined; separate?: boolean | undefined; pretty?: boolean | undefined; backup?: boolean | undefined; decrypted?: boolean | undefined; }, { id?: string | undefined; projectId?: string | undefined; output?: string | undefined; all?: boolean | undefined; separate?: boolean | undefined; pretty?: boolean | undefined; backup?: boolean | undefined; decrypted?: boolean | undefined; }>; export declare class ExportCredentialsCommand extends BaseCommand<z.infer<typeof flagsSchema>> { run(): Promise<void>; catch(error: Error): Promise<void>; private getWhereFilter; } export {};