UNPKG

n8n

Version:

n8n Workflow Automation Tool

16 lines (15 loc) 376 B
import { z } from 'zod'; export declare const serializedCredentialSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; type: z.ZodString; }, "strict", z.ZodTypeAny, { name: string; id: string; type: string; }, { name: string; id: string; type: string; }>; export type SerializedCredential = z.infer<typeof serializedCredentialSchema>;