n8n
Version:
n8n Workflow Automation Tool
16 lines (15 loc) • 420 B
TypeScript
import { z } from 'zod';
export declare const serializedVariableSchema: z.ZodObject<{
name: z.ZodString;
type: z.ZodString;
value: z.ZodOptional<z.ZodString>;
}, "strict", z.ZodTypeAny, {
name: string;
type: string;
value?: string | undefined;
}, {
name: string;
type: string;
value?: string | undefined;
}>;
export type SerializedVariable = z.infer<typeof serializedVariableSchema>;